Skip to content

Commit

Permalink
Update the regular github actions too.
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumD committed Feb 3, 2024
1 parent 985b6e2 commit 901d1a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Configure Java
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Checkout the repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/setup-java@v2
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '21'
cache: 'maven'

- name: Cache local Maven repository
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: "~/.m2/repository"
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit 901d1a5

Please sign in to comment.