Skip to content

Commit

Permalink
workflows: bump actions/upload-artifact from 2 to 3 (#5278)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 11, 2022
1 parent d8d4174 commit 5f906ad
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
shell: bash

- name: Upload the schema
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: ./fluent-bit-schema*.json
name: fluent-bit-schema-${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-build-linux-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
working-directory: packaging

- name: Upload the ${{ matrix.distro }} artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: packages-${{ inputs.version }}-${{ steps.formatted_distro.outputs.replaced }}
path: packaging/packages/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-build-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
working-directory: build

- name: Upload build packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: macos-packages
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
working-directory: build

- name: Upload build packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: windows-packages
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-integration-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pr-${{ github.event.pull_request.number }}-image
path: /tmp/pr-image.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-scorecards-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
publish_results: true

- name: "Upload artifact"
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: SARIF file
path: scorecard-results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

# In case we need to analyse the uploaded files for some reason.
- name: Detain results for debug if needed
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: trivy-results-${{ matrix.local_tag }}.sarif
path: trivy-results-${{ matrix.local_tag }}.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-fuzz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
dry-run: false
language: c
- name: Upload Crash
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down

0 comments on commit 5f906ad

Please sign in to comment.