Skip to content

Commit ca089bb

Browse files
fix: update deprecated GitHub Actions to current versions
- Update actions/checkout from v2 to v5 - Update actions/setup-java from v2 to v5 - Update actions/cache from v2 to v4 This fixes the CI failure caused by GitHub's shutdown of v2 actions. Co-Authored-By: Sam Fertig <sam.fertig@codeium.com>
1 parent d7f8573 commit ca089bb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/gradle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v5
2020
- name: Set up JDK 11
21-
uses: actions/setup-java@v2
21+
uses: actions/setup-java@v5
2222
with:
2323
distribution: zulu
2424
java-version: '11'
25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v4
2626
with:
2727
path: |
2828
~/.gradle/caches

0 commit comments

Comments
 (0)