From 554ef42dacf4e100d4d2926b914ea276dc86d783 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 14 Aug 2026 18:45:30 +0000 Subject: [PATCH] chore(deps): update github-actions --- .github/workflows/android-ech.yml | 2 +- .github/workflows/conscrypt.yml | 2 +- .github/workflows/containers.yml | 2 +- .github/workflows/network.yml | 2 +- .github/workflows/pages.yml | 6 +++--- .github/workflows/test-server.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/android-ech.yml b/.github/workflows/android-ech.yml index 70885f2..9598f6f 100644 --- a/.github/workflows/android-ech.yml +++ b/.github/workflows/android-ech.yml @@ -105,7 +105,7 @@ jobs: # The suite's XML, for the status page, whatever colour the job ended up. - name: Upload Test Results if: always() - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v7.0.1 with: name: android-ech-test-results-${{ inputs.okhttpVersion || 'pinned-snapshot' }} path: | diff --git a/.github/workflows/conscrypt.yml b/.github/workflows/conscrypt.yml index 054473b..d615120 100644 --- a/.github/workflows/conscrypt.yml +++ b/.github/workflows/conscrypt.yml @@ -108,7 +108,7 @@ jobs: # fetched back — including on a pull request, where it exercises the fallback path. - name: Upload the build if: always() && (steps.existing.outputs.exists == 'false' || inputs.force) - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v7.0.1 with: name: conscrypt-${{ steps.pin.outputs.tag }} path: conscrypt/build/dist/ diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 75e3a30..5cbdd63 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -100,7 +100,7 @@ jobs: # the build. The status page reads results from here, not from the job's colour. - name: Upload Test Results if: always() - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v7.0.1 with: name: container-test-results-${{ matrix.okhttpVersion || 'pinned' }} path: | diff --git a/.github/workflows/network.yml b/.github/workflows/network.yml index c2d692a..89d439a 100644 --- a/.github/workflows/network.yml +++ b/.github/workflows/network.yml @@ -150,7 +150,7 @@ jobs: # results — the status page reads them from here, and shows them as findings. - name: Upload Test Results if: always() - uses: actions/upload-artifact@v4.6.2 + uses: actions/upload-artifact@v7.0.1 with: name: network-test-results-${{ matrix.okhttpVersion || 'pinned' }} path: | diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 745f2fd..fbfac6f 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -63,7 +63,7 @@ jobs: # failed", and nothing is ever deployed. It is a no-op once the site exists. - name: Configure Pages id: pages - uses: actions/configure-pages@v5.0.0 + uses: actions/configure-pages@v6.0.0 with: enablement: true @@ -156,10 +156,10 @@ jobs: echo "collected $(python3 -c 'import json,sys; print(len(json.load(open("site/data/issues.json"))))') open issue(s)" - name: Upload Pages Artifact - uses: actions/upload-pages-artifact@v4.0.0 + uses: actions/upload-pages-artifact@v5.0.0 with: path: site - name: Deploy id: deploy - uses: actions/deploy-pages@v4.0.5 + uses: actions/deploy-pages@v5.0.0 diff --git a/.github/workflows/test-server.yml b/.github/workflows/test-server.yml index df0a0e1..a083218 100644 --- a/.github/workflows/test-server.yml +++ b/.github/workflows/test-server.yml @@ -40,7 +40,7 @@ jobs: uses: actions/checkout@v7.0.1 - name: Configure Go - uses: actions/setup-go@v5.6.0 + uses: actions/setup-go@v7.0.0 with: go-version: '1.24.13' cache-dependency-path: test-server/go.mod @@ -120,7 +120,7 @@ jobs: - name: Log in to GHCR if: github.event_name == 'push' && github.ref == 'refs/heads/main' - uses: docker/login-action@v3.7.0 + uses: docker/login-action@v4.6.0 with: registry: ghcr.io username: ${{ github.actor }}