Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
shell: bash

- name: Upload ${{ matrix.target }} digest
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.target }}-digests-${{ (contains(matrix.platform, 'arm/v7') && 'arm-v7') || matrix.platform }}
path: /tmp/digests/*
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
shell: bash

- name: Upload the schema
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ./fluent-bit-schema*.json
name: fluent-bit-schema-${{ inputs.version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-build-linux-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
SOURCE_FILENAME_PREFIX: source-${{ inputs.version }}

- name: Upload the source artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: source-${{ inputs.version }}
path: source-packages/*
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
working-directory: packaging

- name: Upload the ${{ steps.formatted_distro.outputs.replaced }} artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
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 @@ -106,7 +106,7 @@ jobs:
working-directory: build

- name: Upload build packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: macos-packages on ${{ matrix.config.runner }}
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 @@ -184,7 +184,7 @@ jobs:
- name: Upload build packages
# Skip upload if we skipped build.
if: ${{ matrix.config.arch != 'amd64_arm64' || needs.call-build-windows-get-meta.outputs.armSupported == 'true' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: windows-packages-${{ matrix.config.arch }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-windows-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
working-directory: build

- name: Upload unit test binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: windows-unit-tests-${{ matrix.config.arch }}
path: |
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 @@ -38,7 +38,7 @@ jobs:
publish_results: true

- name: "Upload artifact"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: SARIF file
path: 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@v4
uses: actions/upload-artifact@v5
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 @@ -26,7 +26,7 @@ jobs:
language: c
output-sarif: true
- name: Upload Crash
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
Expand Down
Loading