Skip to content

Commit 91f9117

Browse files
authored
Merge pull request #217 from arduino/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 2 to 3
2 parents f0a2488 + 3580b3e commit 91f9117

14 files changed

+22
-22
lines changed

.github/workflows/sync-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

7272
- name: Pass configuration files to next job via workflow artifact
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
path: |
7676
*.yaml

.github/workflows/test-install-script.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
"${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}"
4949
5050
- name: Save configured script as workflow artifact
51-
uses: actions/upload-artifact@v2
51+
uses: actions/upload-artifact@v3
5252
with:
5353
if-no-files-found: error
5454
path: ${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}

workflow-templates/check-go-dependencies-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
7474
- name: Upload cache to workflow artifact
7575
if: failure() && steps.diff.outcome == 'failure'
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
with:
7878
if-no-files-found: error
7979
name: dep-licenses-cache

workflow-templates/dependabot/workflow-template-copies/.github/workflows/check-go-dependencies-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
7474
- name: Upload cache to workflow artifact
7575
if: failure() && steps.diff.outcome == 'failure'
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
with:
7878
if-no-files-found: error
7979
name: dep-licenses-cache

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-nightly-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: task dist:all
3939

4040
- name: Upload artifacts
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v3
4242
with:
4343
if-no-files-found: error
4444
name: ${{ env.ARTIFACT_NAME }}
@@ -113,7 +113,7 @@ jobs:
113113
${{ env.DIST_DIR }}/*-checksums.txt
114114
115115
- name: Upload artifacts
116-
uses: actions/upload-artifact@v2
116+
uses: actions/upload-artifact@v3
117117
with:
118118
if-no-files-found: error
119119
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-tester-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
# Transfer builds to artifacts job
8181
- name: Upload combined builds artifact
82-
uses: actions/upload-artifact@v2
82+
uses: actions/upload-artifact@v3
8383
with:
8484
path: ${{ env.DIST_DIR }}
8585
name: ${{ env.BUILDS_ARTIFACT }}
@@ -119,7 +119,7 @@ jobs:
119119
path: ${{ env.BUILDS_ARTIFACT }}
120120

121121
- name: Upload individual build artifact
122-
uses: actions/upload-artifact@v2
122+
uses: actions/upload-artifact@v3
123123
with:
124124
path: ${{ env.BUILDS_ARTIFACT }}/${{ matrix.artifact.path }}
125125
name: ${{ matrix.artifact.name }}

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-crosscompile-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: task dist:all
5151

5252
- name: Upload artifacts
53-
uses: actions/upload-artifact@v2
53+
uses: actions/upload-artifact@v3
5454
with:
5555
if-no-files-found: error
5656
name: ${{ env.ARTIFACT_NAME }}
@@ -125,7 +125,7 @@ jobs:
125125
${{ env.DIST_DIR }}/*-checksums.txt
126126
127127
- name: Upload artifacts
128-
uses: actions/upload-artifact@v2
128+
uses: actions/upload-artifact@v3
129129
with:
130130
if-no-files-found: error
131131
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/dependabot/workflow-template-copies/.github/workflows/release-go-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: task dist:all
4444

4545
- name: Upload artifacts
46-
uses: actions/upload-artifact@v2
46+
uses: actions/upload-artifact@v3
4747
with:
4848
if-no-files-found: error
4949
name: ${{ env.ARTIFACT_NAME }}
@@ -118,7 +118,7 @@ jobs:
118118
${{ env.DIST_DIR }}/*-checksums.txt
119119
120120
- name: Upload artifacts
121-
uses: actions/upload-artifact@v2
121+
uses: actions/upload-artifact@v3
122122
with:
123123
if-no-files-found: error
124124
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/dependabot/workflow-template-copies/.github/workflows/sync-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

7272
- name: Pass configuration files to next job via workflow artifact
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
path: |
7676
*.yaml

workflow-templates/publish-go-nightly-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: task dist:all
3939

4040
- name: Upload artifacts
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v3
4242
with:
4343
if-no-files-found: error
4444
name: ${{ env.ARTIFACT_NAME }}
@@ -113,7 +113,7 @@ jobs:
113113
${{ env.DIST_DIR }}/*-checksums.txt
114114
115115
- name: Upload artifacts
116-
uses: actions/upload-artifact@v2
116+
uses: actions/upload-artifact@v3
117117
with:
118118
if-no-files-found: error
119119
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/publish-go-tester-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
# Transfer builds to artifacts job
8181
- name: Upload combined builds artifact
82-
uses: actions/upload-artifact@v2
82+
uses: actions/upload-artifact@v3
8383
with:
8484
path: ${{ env.DIST_DIR }}
8585
name: ${{ env.BUILDS_ARTIFACT }}
@@ -119,7 +119,7 @@ jobs:
119119
path: ${{ env.BUILDS_ARTIFACT }}
120120

121121
- name: Upload individual build artifact
122-
uses: actions/upload-artifact@v2
122+
uses: actions/upload-artifact@v3
123123
with:
124124
path: ${{ env.BUILDS_ARTIFACT }}/${{ matrix.artifact.path }}
125125
name: ${{ matrix.artifact.name }}

workflow-templates/release-go-crosscompile-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: task dist:all
5151

5252
- name: Upload artifacts
53-
uses: actions/upload-artifact@v2
53+
uses: actions/upload-artifact@v3
5454
with:
5555
if-no-files-found: error
5656
name: ${{ env.ARTIFACT_NAME }}
@@ -125,7 +125,7 @@ jobs:
125125
${{ env.DIST_DIR }}/*-checksums.txt
126126
127127
- name: Upload artifacts
128-
uses: actions/upload-artifact@v2
128+
uses: actions/upload-artifact@v3
129129
with:
130130
if-no-files-found: error
131131
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/release-go-task.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: task dist:all
4444

4545
- name: Upload artifacts
46-
uses: actions/upload-artifact@v2
46+
uses: actions/upload-artifact@v3
4747
with:
4848
if-no-files-found: error
4949
name: ${{ env.ARTIFACT_NAME }}
@@ -118,7 +118,7 @@ jobs:
118118
${{ env.DIST_DIR }}/*-checksums.txt
119119
120120
- name: Upload artifacts
121-
uses: actions/upload-artifact@v2
121+
uses: actions/upload-artifact@v3
122122
with:
123123
if-no-files-found: error
124124
name: ${{ env.ARTIFACT_NAME }}

workflow-templates/sync-labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
7171

7272
- name: Pass configuration files to next job via workflow artifact
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
path: |
7676
*.yaml

0 commit comments

Comments
 (0)