From ba9d70962693618825191c4863364833c5bacf47 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 22 Dec 2025 18:13:56 +0000 Subject: [PATCH] chore(deps): update github artifact actions --- .github/workflows/ci.yaml | 2 +- .github/workflows/deps.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a6af50b50..fe766d64de 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,7 +32,7 @@ jobs: # Exclude all of the grpc_service_config package (it is generated). run: go mod download && go vet $(go list ./... | grep -v 'grpc_service_config') > govet.txt && ! [ -s govet.txt ] if: ${{ always() }} - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: ${{ always() }} with: name: linting-results diff --git a/.github/workflows/deps.yaml b/.github/workflows/deps.yaml index 4d2b51688e..ff3492d2e4 100644 --- a/.github/workflows/deps.yaml +++ b/.github/workflows/deps.yaml @@ -38,7 +38,7 @@ jobs: - name: Prepare repositories.bzl payload if: steps.update.outputs.changed run: tar czf repos.tgz repositories.bzl - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 if: steps.update.outputs.changed with: name: repositories @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v4 with: ref: main - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: name: repositories - name: Expand repositories archive