Skip to content

Commit 2cb4852

Browse files
committed
ci: upgrade actions/upload-artifact to v4 in workflows
1 parent 96b3b51 commit 2cb4852

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
run: ./gradlew clean build
3131

3232
- name: Archive test results
33-
uses: actions/upload-artifact@v3
33+
uses: actions/upload-artifact@v4
3434
if: always() # run even if build failed
3535
with:
3636
name: test-results
3737
path: build/reports
3838

3939
- name: Archive libs
40-
uses: actions/upload-artifact@v3
40+
uses: actions/upload-artifact@v4
4141
with:
4242
name: libs
4343
path: build/libs

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: ./gradlew jreleaserFullRelease
6666

6767
- name: Archive artifacts
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: artifacts
7171
path: |

0 commit comments

Comments
 (0)