Skip to content

Commit 2411eca

Browse files
committed
fix: upgrade upload artifact to v6
1 parent 0bfb756 commit 2411eca

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-bun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Upload build artifacts
8989
if: steps.build.outputs.artifact-name != '' && inputs.artifact-path != ''
9090
id: upload-artifact
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v6
9292
with:
9393
name: ${{ inputs.artifact-name }}
9494
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

.github/workflows/build-flutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ jobs:
309309
- id: upload-artifact
310310
name: Upload build artifacts
311311
if: inputs.artifact-name != '' && inputs.artifact-path != ''
312-
uses: actions/upload-artifact@v4
312+
uses: actions/upload-artifact@v6
313313
with:
314314
name: ${{ inputs.artifact-name }}
315315
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

.github/workflows/build-springboot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- id: upload-artifact
7272
name: Upload build artifacts
7373
if: inputs.artifact-name != '' && inputs.artifact-path != ''
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: ${{ inputs.artifact-name }}
7777
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

.github/workflows/test-bun.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- id: upload-artifact
6565
name: Upload artifact
6666
if: inputs.artifact-name != '' && inputs.artifact-path != ''
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v6
6868
with:
6969
name: ${{ inputs.artifact-name }}
7070
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

.github/workflows/test-flutter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
6767
- name: Upload artifact
6868
if: inputs.artifact-name != ''
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v6
7070
with:
7171
name: ${{ inputs.artifact-name }}
7272
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

.github/workflows/test-springboot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- id: upload-artifact
8282
name: Upload build artifacts
8383
if: inputs.artifact-name != '' && inputs.artifact-path != ''
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v6
8585
with:
8686
name: ${{ inputs.artifact-name }}
8787
path: ${{ inputs.working-directory }}/${{ inputs.artifact-path }}

docs/upsert-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
prepare:
1313
name: Prepare release
14-
uses: actions/upload-artifact@v4
14+
uses: actions/upload-artifact@v6
1515
with:
1616
artifact-name: 'release'
1717
artifact-path: 'README.md'

0 commit comments

Comments
 (0)