From f7597009a6bd6906e7ba3f7fe731cef8b1d0ae82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 05:14:54 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). Updates `actions/checkout` from 4 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/v4...v6) Updates `actions/create-github-app-token` from 1 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](https://github.com/actions/create-github-app-token/compare/v1...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/lts-release.yaml | 6 +++--- .github/workflows/manage-lts-prow-config.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lts-release.yaml b/.github/workflows/lts-release.yaml index d558d98..058dd6d 100644 --- a/.github/workflows/lts-release.yaml +++ b/.github/workflows/lts-release.yaml @@ -53,7 +53,7 @@ jobs: matrix: ${{ steps.plan.outputs.matrix }} steps: - name: Check out test-infra - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Validate versions and build matrix id: plan @@ -127,7 +127,7 @@ jobs: steps: - name: Generate GitHub App token id: app-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.LTS_RELEASE_APP_ID }} private-key: ${{ secrets.LTS_RELEASE_APP_PRIVATE_KEY }} @@ -135,7 +135,7 @@ jobs: repositories: kubernetes - name: Check out test-infra (for hack scripts) - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: path: test-infra diff --git a/.github/workflows/manage-lts-prow-config.yaml b/.github/workflows/manage-lts-prow-config.yaml index a6d57d6..400ef70 100644 --- a/.github/workflows/manage-lts-prow-config.yaml +++ b/.github/workflows/manage-lts-prow-config.yaml @@ -45,7 +45,7 @@ jobs: steps: - name: Generate GitHub App token id: app-token - uses: actions/create-github-app-token@v1 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.LTS_RELEASE_APP_ID }} private-key: ${{ secrets.LTS_RELEASE_APP_PRIVATE_KEY }} @@ -78,7 +78,7 @@ jobs: echo "UPSTREAM_URL=$UPSTREAM_URL" >> "$GITHUB_ENV" - name: Check out repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ steps.app-token.outputs.token }}