Skip to content

Commit 3abae23

Browse files
committed
fix: GHA
1 parent f43d591 commit 3abae23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: checkout repository
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v5
2323
- name: validate gradle wrapper
24-
uses: gradle/wrapper-validation-action@v1
24+
uses: gradle/actions/wrapper-validation@v4
2525
- name: setup jdk ${{ matrix.java }}
26-
uses: actions/setup-java@v1
26+
uses: actions/setup-java@v5
2727
with:
2828
java-version: ${{ matrix.java }}
2929
- name: make gradle wrapper executable
@@ -33,7 +33,7 @@ jobs:
3333
run: ./gradlew build
3434
- name: capture build artifacts
3535
if: ${{ runner.os == 'Linux' && matrix.java == '21' }} # Only upload artifacts built from latest java on one OS
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: Artifacts
3939
path: build/libs/

0 commit comments

Comments
 (0)