From 3071f5cb2d56f5d871e58d4b24ac3704236a3af1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 23:53:49 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v6 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/promote-image.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/sync-proto.yml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ada74ea..3842309 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6 @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6 @@ -56,7 +56,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go uses: actions/setup-go@v6 diff --git a/.github/workflows/promote-image.yml b/.github/workflows/promote-image.yml index 4e9451c..8377d2e 100644 --- a/.github/workflows/promote-image.yml +++ b/.github/workflows/promote-image.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Prepare run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5ccabeb..31e1339 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: should_release: ${{ steps.version.outputs.hasNextVersion }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 token: ${{ secrets.BOT_PAT }} @@ -72,7 +72,7 @@ jobs: if: needs.update-version.outputs.should_release == 'true' steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Generate release notes diff --git a/.github/workflows/sync-proto.yml b/.github/workflows/sync-proto.yml index d544964..e5817dc 100644 --- a/.github/workflows/sync-proto.yml +++ b/.github/workflows/sync-proto.yml @@ -15,7 +15,7 @@ jobs: has-targets: ${{ steps.set-matrix.outputs.has-targets }} steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Read proto.targets and prepare matrix id: set-matrix @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: source-repo token: ${{ secrets.BOT_PAT }} @@ -71,7 +71,7 @@ jobs: - name: Checkout target repo if: steps.check-proto.outputs.exists == 'true' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ matrix.repo }} token: ${{ secrets.BOT_PAT }}