Skip to content

Commit

Permalink
updated action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Kruth committed Dec 9, 2024
1 parent e2b0e94 commit 5aa933e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 17
- name: Cache local Maven repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-patch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
# We need a personal access token to be able to push to a protected branch
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}

- name: Setup JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
java-package: jdk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
# We need a personal access token to be able to push to a protected branch
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}

- name: Setup JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
java-package: jdk
Expand Down

0 comments on commit 5aa933e

Please sign in to comment.