Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workflows: bump actions/upload-artifact from 2 to 3 #3

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/call-build-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,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-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
4 changes: 2 additions & 2 deletions .github/workflows/cron-unstable-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
shell: bash

- name: Upload the schema
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: ./
name: fluent-bit-schema*.json
Expand Down Expand Up @@ -174,7 +174,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/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
4 changes: 2 additions & 2 deletions .github/workflows/pr-windows-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,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 All @@ -69,7 +69,7 @@ jobs:
docker save -o windows-${{ github.sha }}.tar fluent/fluent-bit:windows-${{ github.sha }}

- name: Upload containers
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: windows-containers
path: windows-${{ github.sha }}.tar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staging-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
shell: bash

- name: Upload the schema
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: ./
name: fluent-bit-schema*.json
Expand Down
Loading