Skip to content

Commit 91257ff

Browse files
authoredMay 3, 2022
Merge pull request #105 from arduino/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 2 to 3
2 parents 44c8387 + 52f0461 commit 91257ff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
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/*"
4949

5050
- name: Upload Workflow Artifact [GitHub Actions]
51-
uses: actions/upload-artifact@v2
51+
uses: actions/upload-artifact@v3
5252
with:
5353
name: build-artifacts
5454
# this makes the artifact a .zip of the .zip archive, which is currently necessary to preserve the executable file permissions

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

+1-1
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 }}

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

0 commit comments

Comments
 (0)
Please sign in to comment.