Skip to content

Commit 44cfb25

Browse files
authored
Merge pull request #224 from arduino/dependabot/github_actions/actions/upload-artifact-6
Bump actions/upload-artifact from 5 to 6
2 parents f0473de + e0c01ff commit 44cfb25

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: 7z a "${{ github.workspace }}/${{ env.BUILD_OUTPUT_DIRECTORY }}/archive/${{ env.EXECUTABLE_NAME }}_${{ runner.OS }}_amd64.zip" "${{ github.workspace }}/${{ env.BUILD_OUTPUT_DIRECTORY }}/${{ runner.OS }}_amd64/*"
6262

6363
- name: Upload Workflow Artifact [GitHub Actions]
64-
uses: actions/upload-artifact@v5
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.config.artifact-suffix }}
6767
# this makes the artifact a .zip of the .zip archive, which is currently necessary to preserve the executable file permissions

.github/workflows/check-go-dependencies-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
109109
- name: Upload cache to workflow artifact
110110
if: failure() && steps.diff.outcome == 'failure'
111-
uses: actions/upload-artifact@v5
111+
uses: actions/upload-artifact@v6
112112
with:
113113
if-no-files-found: error
114114
include-hidden-files: true

.github/workflows/release-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: task dist:${{ matrix.os.task }}
6969

7070
- name: Upload artifacts
71-
uses: actions/upload-artifact@v5
71+
uses: actions/upload-artifact@v6
7272
with:
7373
if-no-files-found: error
7474
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -181,7 +181,7 @@ jobs:
181181
-C ../../ LICENSE.txt
182182
183183
- name: Replace artifact with notarized build
184-
uses: actions/upload-artifact@v5
184+
uses: actions/upload-artifact@v6
185185
with:
186186
if-no-files-found: error
187187
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

.github/workflows/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7272

7373
- name: Pass configuration files to next job via workflow artifact
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
path: |
7777
*.yaml

0 commit comments

Comments
 (0)