Skip to content

Commit ff34d19

Browse files
committed
ci: use newer actions
1 parent 4e9376b commit ff34d19

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
runs-on: ${{ matrix.os }}
1919
steps:
2020
- name: checkout repository
21-
uses: actions/checkout@v3.5.3
21+
uses: actions/checkout@v4
2222
- name: validate gradle wrapper
23-
uses: gradle/wrapper-validation-action@v1.0.6
23+
uses: gradle/wrapper-validation-action@v3
2424
- name: setup jdk ${{ matrix.java }}
25-
uses: actions/setup-java@v3.4.1
25+
uses: actions/setup-java@v4
2626
with:
2727
java-version: ${{ matrix.java }}
2828
distribution: 'adopt'
@@ -40,7 +40,7 @@ jobs:
4040
bash ./.github/scripts/build_output.sh
4141
- name: capture build artifacts
4242
if: ${{ runner.os == 'Linux' && matrix.java == '17' }}
43-
uses: actions/upload-artifact@v3.1.2
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: artifacts
4646
path: out/

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: checkout repository
3131
uses: actions/checkout@v3.5.3
3232
- name: download build artifacts
33-
uses: actions/download-artifact@v3
33+
uses: actions/download-artifact@v4
3434
with:
3535
name: artifacts
3636
path: artifacts

0 commit comments

Comments
 (0)