1
0
mirror of https://github.com/opencontainers/umoci.git synced 2026-02-05 09:45:50 +01:00

build(deps): bump actions/upload-artifact from 4 to 5

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

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

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-10-27 06:16:30 +00:00
committed by GitHub
parent 94413883fc
commit 5bb4ba16c1

View File

@@ -38,7 +38,7 @@ jobs:
- uses: actions/setup-go@v6
- run: make release
- name: upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: release-${{ github.run_id }}
path: release/*
@@ -92,7 +92,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: unit,macos
- name: upload coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.GOCOVERDIR }}
@@ -128,7 +128,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: unit,linux
- name: upload coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.GOCOVERDIR }}
@@ -178,7 +178,7 @@ jobs:
files: ${{ env.COVERAGE }}
flags: integration,linux
- name: upload coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }}
path: ${{ env.GOCOVERDIR }}
@@ -201,7 +201,7 @@ jobs:
run: |
./hack/ci-coverage.sh --merge="$GOCOVERDIR" --func coverage/*/
- name: upload final coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage
path: ${{ env.GOCOVERDIR }}