Skip to content

Commit 204a31a

Browse files
Update GitHub Artifact Actions
1 parent e80c96e commit 204a31a

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/after_merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
old-file-path: sample-apk.apk
2525
new-file-path: sample-apk.apk
2626

27-
- uses: actions/upload-artifact@v6
27+
- uses: actions/upload-artifact@v7
2828
with:
2929
name: diffuse-output
3030
path: ${{ steps.diffuse.outputs.diff-file }}

.github/workflows/main.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
distribution: temurin
2121
java-version: 24
2222

23-
- uses: actions/download-artifact@v7
23+
- uses: actions/download-artifact@v8
2424
with:
2525
name: old-apk
2626

27-
- uses: actions/download-artifact@v7
27+
- uses: actions/download-artifact@v8
2828
with:
2929
name: new-apk
3030

@@ -76,7 +76,7 @@ jobs:
7676
issue-number: ${{ github.event.pull_request.number }}
7777
token: ${{ secrets.GITHUB_TOKEN }}
7878

79-
- uses: actions/upload-artifact@v6
79+
- uses: actions/upload-artifact@v7
8080
with:
8181
name: diffuse-output-1
8282
path: ${{ steps.diffuse.outputs.diff-file }}
@@ -95,11 +95,11 @@ jobs:
9595
distribution: temurin
9696
java-version: 24
9797

98-
- uses: actions/download-artifact@v7
98+
- uses: actions/download-artifact@v8
9999
with:
100100
name: very-old-apk
101101

102-
- uses: actions/download-artifact@v7
102+
- uses: actions/download-artifact@v8
103103
with:
104104
name: new-apk
105105

@@ -151,7 +151,7 @@ jobs:
151151
issue-number: ${{ github.event.pull_request.number }}
152152
token: ${{ secrets.GITHUB_TOKEN }}
153153

154-
- uses: actions/upload-artifact@v6
154+
- uses: actions/upload-artifact@v7
155155
with:
156156
name: diffuse-output-2
157157
path: ${{ steps.diffuse.outputs.diff-file }}
@@ -162,7 +162,7 @@ jobs:
162162
- name: Get very old version of Android Auto app for test purposes
163163
run: wget "https://github.com/usefulness/storage/raw/master/android-auto-very-old.apk" -O very-old-apk.apk
164164

165-
- uses: actions/upload-artifact@v6
165+
- uses: actions/upload-artifact@v7
166166
with:
167167
name: very-old-apk
168168
path: very-old-apk.apk
@@ -174,7 +174,7 @@ jobs:
174174
- name: Get old version of Android Auto app for test purposes
175175
run: wget "https://github.com/usefulness/storage/raw/master/android-auto-old.apk" -O old-apk.apk
176176

177-
- uses: actions/upload-artifact@v6
177+
- uses: actions/upload-artifact@v7
178178
with:
179179
name: old-apk
180180
path: old-apk.apk
@@ -186,7 +186,7 @@ jobs:
186186
- name: Get new version of Android Auto app for test purposes
187187
run: wget "https://github.com/usefulness/storage/raw/master/android-auto-new.apk" -O new-apk.apk
188188

189-
- uses: actions/upload-artifact@v6
189+
- uses: actions/upload-artifact@v7
190190
with:
191191
name: new-apk
192192
path: new-apk.apk
@@ -209,11 +209,11 @@ jobs:
209209
distribution: temurin
210210
java-version: 24
211211

212-
- uses: actions/download-artifact@v7
212+
- uses: actions/download-artifact@v8
213213
with:
214214
name: very-old-apk
215215

216-
- uses: actions/download-artifact@v7
216+
- uses: actions/download-artifact@v8
217217
with:
218218
name: new-apk
219219

@@ -226,7 +226,7 @@ jobs:
226226
diffuse-repo: JakeWharton/diffuse
227227
debug: true
228228

229-
- uses: actions/upload-artifact@v6
229+
- uses: actions/upload-artifact@v7
230230
with:
231231
name: diffuse-custom-repo-hardcoded-${{ matrix.os }}
232232
path: ${{ steps.diffuse-custom-repo-hardcoded.outputs.diff-file }}
@@ -239,7 +239,7 @@ jobs:
239239
lib-version: latest
240240
diffuse-repo: JakeWharton/diffuse
241241

242-
- uses: actions/upload-artifact@v6
242+
- uses: actions/upload-artifact@v7
243243
with:
244244
name: diffuse-custom-repo-latest-${{ matrix.os }}
245245
path: ${{ steps.diffuse-custom-repo-latest.outputs.diff-file }}

0 commit comments

Comments
 (0)