Skip to content

Commit f3244f5

Browse files
Bump actions/upload-artifact from 3 to 4
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9d362b2 commit f3244f5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Diff for: .github/workflows/check-go-dependencies-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
106106
- name: Upload cache to workflow artifact
107107
if: failure() && steps.diff.outcome == 'failure'
108-
uses: actions/upload-artifact@v3
108+
uses: actions/upload-artifact@v4
109109
with:
110110
if-no-files-found: error
111111
name: dep-licenses-cache

Diff for: .github/workflows/publish-go-tester-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
if: runner.os == 'macOS'
139139

140140
- name: Upload artifacts
141-
uses: actions/upload-artifact@v3
141+
uses: actions/upload-artifact@v4
142142
with:
143143
name: arduino-create-agent-${{ matrix.os }}${{ matrix.arch }}
144144
path: |

Diff for: .github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
if: steps.prerelease.outputs.IS_PRE != 'true'
144144

145145
- name: Upload artifacts
146-
uses: actions/upload-artifact@v3
146+
uses: actions/upload-artifact@v4
147147
with:
148148
name: ${{ env.PROJECT_NAME }}-${{ matrix.os }}-${{ matrix.arch }}
149149
path: |
@@ -214,7 +214,7 @@ jobs:
214214
run: tar -cvf ArduinoCreateAgent.app_${{ matrix.arch }}.tar -C skel/ .
215215

216216
- name: Upload artifacts
217-
uses: actions/upload-artifact@v3
217+
uses: actions/upload-artifact@v4
218218
with:
219219
if-no-files-found: error
220220
name: ArduinoCreateAgent.app_${{ matrix.arch }}
@@ -343,7 +343,7 @@ jobs:
343343
if: ${{ needs.build.outputs.prerelease != 'true' }}
344344

345345
- name: Upload artifact
346-
uses: actions/upload-artifact@v3
346+
uses: actions/upload-artifact@v4
347347
with:
348348
name: ArduinoCreateAgent.app_${{ matrix.arch }}_notarized
349349
path: ArduinoCreateAgent.app_${{ matrix.arch }}_notarized.zip
@@ -428,7 +428,7 @@ jobs:
428428
if: matrix.os == 'ubuntu-20.04'
429429

430430
- name: Upload artifacts
431-
uses: actions/upload-artifact@v3
431+
uses: actions/upload-artifact@v4
432432
with:
433433
name: ArduinoCreateAgent-${{ matrix.platform-name }}-${{ matrix.arch }}
434434
path: ArduinoCreateAgent*
@@ -526,7 +526,7 @@ jobs:
526526
run: tar -cvf ArduinoCreateAgent-${GITHUB_REF##*/}-osx-${{ matrix.arch }}-installer.tar ArduinoCreateAgent-${GITHUB_REF##*/}-osx-${{ matrix.arch }}-installer.dmg
527527

528528
- name: Upload artifacts
529-
uses: actions/upload-artifact@v3
529+
uses: actions/upload-artifact@v4
530530
with:
531531
name: ArduinoCreateAgent-osx-${{ matrix.arch }}
532532
path: ArduinoCreateAgent*.tar

Diff for: .github/workflows/sync-labels.yml

+1-1
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@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
path: |
7777
*.yaml

0 commit comments

Comments
 (0)