From 674724e347e9cf7219b9245f43cbc744e6900236 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 20:24:01 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ffe6bd..470e05b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,7 +144,7 @@ jobs: - name: upload coverage artefact # We can only use -test.gocoverdir for Go >= 1.20. if: ${{ matrix.go-version != '1.18' && matrix.go-version != '1.19' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.GOCOVERDIR }} @@ -207,7 +207,7 @@ jobs: - name: upload coverage artefact # We can only use -test.gocoverdir for Go >= 1.20. if: ${{ matrix.go-version != '1.18' && matrix.go-version != '1.19' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.GOCOVERDIR }} @@ -289,7 +289,7 @@ jobs: - name: upload coverage artefact # We can only use -test.gocoverdir for Go >= 1.20. if: ${{ matrix.go-version != '1.18' && matrix.go-version != '1.19' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: coverage-${{ runner.os }}-${{ github.job }}-${{ strategy.job-index }} path: ${{ env.GOCOVERDIR }} @@ -334,12 +334,12 @@ jobs: go tool covdata textfmt -i "$GOCOVERDIRS" -o "$FULLCOVERAGE_FILE" go tool cover -html="$FULLCOVERAGE_FILE" -o "$FULLCOVERAGE_FILE.html" - name: upload merged coverage - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: fullcoverage-${{ github.job }} path: ${{ env.FULLCOVERAGE_FILE }} - name: upload coverage html - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: fullcoverage-${{ github.job }}.html path: ${{ env.FULLCOVERAGE_FILE }}.html