Skip to content

Commit 8467125

Browse files
committed
chore: update download/upload-artifact github action
1 parent b8c05f4 commit 8467125

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/prerelease.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ jobs:
5454
cp -L $(bazel cquery --output=files :jazzer_release) jazzer-${{ matrix.name }}.tar.gz
5555
5656
- name: Upload jazzer.jar
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: jazzer_tmp_${{ matrix.name }}
6060
path: jazzer-${{ matrix.name }}.jar
6161
if-no-files-found: error
6262

6363
- name: Upload release archive
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v5
6565
with:
6666
name: jazzer_releases_${{ matrix.name }}
6767
path: jazzer-${{ matrix.name }}.tar.gz
@@ -75,7 +75,7 @@ jobs:
7575
- uses: actions/checkout@v5
7676

7777
- name: Download individual jars
78-
uses: actions/download-artifact@v5
78+
uses: actions/download-artifact@v6
7979
with:
8080
pattern: jazzer_tmp_*
8181
merge-multiple: true
@@ -88,7 +88,7 @@ jobs:
8888
$(find "$(pwd)/_tmp/" -name '*.jar' -printf "--sources %h/%f ")
8989
9090
- name: Upload merged jar
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v5
9292
with:
9393
name: jazzer
9494
path: _tmp/jazzer.jar
@@ -119,7 +119,7 @@ jobs:
119119
echo "build --//deploy:jazzer_version=${TAG#v}" >> .bazelrc
120120
121121
- name: Download merged jar
122-
uses: actions/download-artifact@v5
122+
uses: actions/download-artifact@v6
123123
with:
124124
name: jazzer
125125
path: _tmp/
@@ -133,7 +133,7 @@ jobs:
133133
run: JAZZER_JAR_PATH="$(pwd)/_tmp/jazzer.jar" bazel run deploy
134134

135135
- name: Upload Jazzer Bundle to Github Artifacts
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v5
137137
with:
138138
name: jazzer-maven-central-bundle
139139
path: _tmp/release
@@ -151,7 +151,7 @@ jobs:
151151
uses: actions/checkout@v5
152152

153153
- name: Download individual tar.gzs
154-
uses: actions/download-artifact@v5
154+
uses: actions/download-artifact@v6
155155
with:
156156
pattern: jazzer_releases_*
157157
merge-multiple: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
cp $(bazel cquery --output=files //deploy:jazzer-junit-docs) ./jazzer-junit-docs.jar
2424
2525
- name: Upload jars
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v5
2727
with:
2828
name: jazzer_docs_jars
2929
path: |
@@ -47,7 +47,7 @@ jobs:
4747
ssh-key: "${{ secrets.JAZZER_DOCS_SSH_KEY_PRIVATE }}"
4848

4949
- name: Download jar
50-
uses: actions/download-artifact@v5
50+
uses: actions/download-artifact@v6
5151
with:
5252
name: jazzer_docs_jars
5353
path: .

.github/workflows/run-all-tests-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Upload test logs
7676
if: always()
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: testlogs-${{ matrix.arch }}-${{ matrix.jdk }}
8080
# https://github.com/actions/upload-artifact/issues/92#issuecomment-711107236

0 commit comments

Comments
 (0)