Skip to content

Commit 59b88e2

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

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
token: ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
175175

176176
- name: Download artifact
177-
uses: actions/download-artifact@v3
177+
uses: actions/download-artifact@v4
178178
with:
179179
name: ${{ env.PROJECT_NAME }}-macos-12-amd64 # if we want to support darwin-arm64 in the future for real this has to change.
180180
path: ${{ env.EXE_PATH }}
@@ -241,7 +241,7 @@ jobs:
241241

242242
steps:
243243
- name: Download artifact
244-
uses: actions/download-artifact@v3
244+
uses: actions/download-artifact@v4
245245
with:
246246
name: ArduinoCreateAgent.app_${{ matrix.arch }}
247247

@@ -408,7 +408,7 @@ jobs:
408408
token: ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
409409

410410
- name: Download artifact
411-
uses: actions/download-artifact@v3
411+
uses: actions/download-artifact@v4
412412
with:
413413
name: ${{ env.PROJECT_NAME }}-${{ matrix.os }}-${{ matrix.arch }}
414414
path: artifacts/${{ matrix.platform-name }}/ # path expected by installbuilder
@@ -459,7 +459,7 @@ jobs:
459459
token: ${{ secrets.ARDUINO_CREATE_AGENT_CI_PAT }}
460460

461461
- name: Download artifact
462-
uses: actions/download-artifact@v3
462+
uses: actions/download-artifact@v4
463463
with:
464464
name: ArduinoCreateAgent.app_${{ matrix.arch }}_notarized
465465
path: ArduinoCreateAgent.app
@@ -553,7 +553,7 @@ jobs:
553553
fetch-depth: 0 # fetch all history for the create changelog step to work properly
554554

555555
- name: Download artifact
556-
uses: actions/download-artifact@v3 # download all the artifacts
556+
uses: actions/download-artifact@v4 # download all the artifacts
557557

558558
# mandatory step because upload-release-action does not support multiple folders
559559
- name: prepare artifacts for the release

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
uses: actions/checkout@v4
110110

111111
- name: Download configuration files artifact
112-
uses: actions/download-artifact@v3
112+
uses: actions/download-artifact@v4
113113
with:
114114
name: ${{ env.CONFIGURATIONS_ARTIFACT }}
115115
path: ${{ env.CONFIGURATIONS_FOLDER }}

0 commit comments

Comments
 (0)