Skip to content

Commit

Permalink
Bump build action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
prdoyle committed Jan 27, 2024
1 parent 678484a commit b3e7304
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin

- uses: gradle/gradle-build-action@v2
- uses: gradle/actions/setup-gradle@v3
with:
cache-read-only: false # OR: ${{ github.ref != 'refs/heads/develop' }}

Expand All @@ -41,7 +41,7 @@ jobs:
ORG_GRADLE_PROJECT_signingKey: ${{secrets.GPG_PRIVATE_KEY}}
ORG_GRADLE_PROJECT_signingPassword: ${{secrets.GPG_PASSWORD}}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: reports
path: build/reports/
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin
Expand All @@ -28,7 +28,7 @@ jobs:
server-password: ${{ secrets.OSSRH_TOKEN }}
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}

- uses: gradle/gradle-build-action@v2
- uses: gradle/actions/setup-gradle@v3

- name: Run Gradle Publish
run: |
Expand Down

0 comments on commit b3e7304

Please sign in to comment.