Skip to content

Commit

Permalink
Use Node 16 in github actions (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
amvertex authored Jun 14, 2023
1 parent 58ec01d commit c3cd3d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin }
- name: Build and Verify
run: ./gradlew build
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
outputs:
publish: ${{ steps.detect-publish.outputs.publish }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: detect-publish
run: |
result=$(./scripts/detect-publish.sh)
Expand All @@ -20,8 +20,8 @@ jobs:
needs: [detect-publish]
if: needs.detect-publish.outputs.publish == 1
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with: { java-version: 17, distribution: temurin }
- name: Publish
env:
Expand Down

0 comments on commit c3cd3d5

Please sign in to comment.