chore: fix dependabot alerts (#3841)

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>
This commit is contained in:
Ramkumar Chinchani
2026-03-03 23:59:38 -08:00
committed by GitHub
parent 1ff6f609b7
commit bb121c3b76
11 changed files with 83 additions and 83 deletions
+6 -6
View File
@@ -48,7 +48,7 @@ jobs:
AWS_ACCESS_KEY_ID: fake
AWS_SECRET_ACCESS_KEY: fake
- name: upload coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-minimal
path: coverage-minimal.txt
@@ -88,7 +88,7 @@ jobs:
AWS_ACCESS_KEY_ID: fake
AWS_SECRET_ACCESS_KEY: fake
- name: upload coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-extended
path: coverage-extended.txt
@@ -120,7 +120,7 @@ jobs:
- name: run zot development-mode unit tests (possibly using failure injection)
run: make test-devmode
- name: upload coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-devmode
path: coverage-dev-*.txt
@@ -160,7 +160,7 @@ jobs:
GCSMOCK_ENDPOINT: http://localhost:9000/
STORAGE_EMULATOR_HOST: localhost:9000
- name: upload coverage
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: coverage-needprivileges
path: coverage-needprivileges-*.txt
@@ -178,7 +178,7 @@ jobs:
check-latest: true
go-version: 1.25.x
- name: download all workflow coverage files
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
- name: merge code coverage
run: |
cd $GITHUB_WORKSPACE
@@ -190,7 +190,7 @@ jobs:
mkdir unified-coverage
cp coverage.txt coverage.html unified-coverage/
- name: upload unified-coverage as build artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: unified-coverage
path: unified-coverage/*