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

build(deps): bump actions/upload-artifact from 3 to 4 #520

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/setup-go@v5
- run: make release
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-${{ github.run_id }}
path: release/*
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: unit,macos
- name: upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.COVERAGE }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
- name: build updated ci image
run: make ci-cache
- name: upload ci image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ci-image.tar.zst
path: ${{ github.workspace }}/.cache/ci-image.tar.zst
Expand All @@ -136,7 +136,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: unit,linux
- name: upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.COVERAGE }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: integration,linux
- name: upload coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.COVERAGE }}
Expand All @@ -194,7 +194,7 @@ jobs:
find coverage/ -type f -name "*coverage*" -print0 | xargs -0 ./hack/collate.awk > "$COVERAGE"
./hack/ci-coverage.sh "$COVERAGE"
- name: upload final coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage
path: ${{ env.COVERAGE }}
Loading