Skip to content

Commit

Permalink
Upgrade actions/cache, actions/checkout, and actions/setup-java to ve…
Browse files Browse the repository at this point in the history
…rsions 3, 4, and 3.13.0 (#715)
  • Loading branch information
kevin-m-knight-gs authored Oct 6, 2023
1 parent 3c893ef commit 21ff86e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache Maven dependencies
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-mvn-deps
with:
Expand All @@ -43,9 +43,11 @@ jobs:
${{ runner.os }}-
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3.13.0
with:
distribution: 'temurin'
java-version: 17
java-package: jdk
server-id: ossrh
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
Expand Down

0 comments on commit 21ff86e

Please sign in to comment.