Skip to content

Commit

Permalink
Fixes warnings, maybe fixes build?
Browse files Browse the repository at this point in the history
  • Loading branch information
EAGrahamJr committed Feb 27, 2024
1 parent 555b196 commit 3cc3f0c
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: "temurin"
# plugins
- name: Checkout and build plugins
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: EAGrahamJr/gradle-scripts
path: gradle-scripts
Expand All @@ -47,19 +47,19 @@ jobs:
cd gradle-scripts
./gradlew --no-daemon --quiet build publishToMavenLocal
# diozero
- name: Checkout and build 'diozero'
uses: actions/checkout@v3
with:
repository: EAGrahamJr/diozero
ref: main
path: diozero
- name: Build diozero
run: |
cd diozero
mvn --quiet --batch-mode -DskipTests install
# - name: Checkout and build 'diozero'
# uses: actions/checkout@v4
# with:
# repository: EAGrahamJr/diozero
# ref: main
# path: diozero
# - name: Build diozero
# run: |
# cd diozero
# mvn --quiet --batch-mode -DskipTests install
# hassK
- name: Checkout and build hassk
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: EAGrahamJr/HAssK
path: hassk
Expand All @@ -69,7 +69,7 @@ jobs:
./gradlew --no-daemon --quiet build publishToMavenLocal
# kobots-devices
- name: Checkout and build kobots-devices
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: EAGrahamJr/kobots-devices
path: kobots-devices
Expand All @@ -79,7 +79,7 @@ jobs:
./gradlew --no-daemon --quiet build publishToMavenLocal
# BUILD IT
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build
run: ./gradlew --no-daemon build dokkaJavadoc
# the actual page generation
Expand All @@ -103,4 +103,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
uses: actions/deploy-pages@v4

0 comments on commit 3cc3f0c

Please sign in to comment.