From d7ab142e6dd75021d74da13b049e4298ba10f228 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Sep 2025 11:04:21 +0000 Subject: [PATCH] chore(deps): 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/codeql-analysis.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/terraform-format-and-style.yml | 2 +- .github/workflows/test.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a55d663..61dd909 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da8a9f3..cb232b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Unshallow run: git fetch --prune --unshallow diff --git a/.github/workflows/terraform-format-and-style.yml b/.github/workflows/terraform-format-and-style.yml index 7dc92a1..6292ad6 100644 --- a/.github/workflows/terraform-format-and-style.yml +++ b/.github/workflows/terraform-format-and-style.yml @@ -12,7 +12,7 @@ jobs: permissions: pull-requests: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: hashicorp/setup-terraform@v3 - name: terraform fmt diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f20eb7..abb5e03 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,7 +25,7 @@ jobs: go-version: '1.24' id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Get dependencies run: | go mod download @@ -40,7 +40,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: '1.24' - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - run: go generate ./... - name: git diff run: | @@ -79,7 +79,7 @@ jobs: terraform_wrapper: false - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Get dependencies run: |