From f46c394946a32485eefe798aa53f08dad18f2f9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Nov 2025 01:02:13 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [tailscale/github-action](https://github.com/tailscale/github-action), [actions/checkout](https://github.com/actions/checkout) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `tailscale/github-action` from 3 to 4 - [Release notes](https://github.com/tailscale/github-action/releases) - [Commits](https://github.com/tailscale/github-action/compare/v3...v4) Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) Updates `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: tailscale/github-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/dance.yml | 6 +++--- .github/workflows/go.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dance.yml b/.github/workflows/dance.yml index 9167b8e1a..db2453f4a 100644 --- a/.github/workflows/dance.yml +++ b/.github/workflows/dance.yml @@ -62,7 +62,7 @@ jobs: steps: - name: Install Tailscale if: github.event_name != 'pull_request' - uses: tailscale/github-action@v3 + uses: tailscale/github-action@v4 with: oauth-client-id: ${{ secrets.TAILSCALE_CLIENT_ID }} oauth-secret: ${{ secrets.TAILSCALE_SECRET }} @@ -77,7 +77,7 @@ jobs: run: tailscale ping -c 0 --until-direct --timeout 2s --verbose ${{ secrets.DANCE_PUSH_HOST }} 2>&1 > /tmp/logs/tailscale.txt & - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: true @@ -132,7 +132,7 @@ jobs: - name: Upload logs if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: logs-${{ matrix.config }} path: logs.zip diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3ad4d8116..45a4a63d6 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -37,7 +37,7 @@ jobs: steps: # TODO https://github.com/FerretDB/github-actions/issues/211 - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Go uses: FerretDB/github-actions/setup-go@main @@ -84,7 +84,7 @@ jobs: steps: # TODO https://github.com/FerretDB/github-actions/issues/211 - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # for `golangci-lint run --new` to work