From c3e94f58b0f0d72fb47d5cbdca0afcef31b6f1f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 13:42:21 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [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/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b078f89..6031ad2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: # Check out the repo with credentials that can bypass branch protection, and fetch git history instead of just latest commit - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: token: ${{ secrets.AUTOMATION_USER_TOKEN }} fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f679e4..3f85353 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - run: go mod download - run: go build -v . @@ -55,7 +55,7 @@ jobs: with: terraform_version: ${{ matrix.terraform }} terraform_wrapper: false - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - run: go mod download - env: TF_ACC: "1"