From 15ad34a35067fbe99e9318cddf83ac3a40f3dc14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 10:04:52 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/_reusable-deploy.yml | 2 +- .github/workflows/_reusable-destroy.yml | 2 +- .github/workflows/_reusable-pipeline.yml | 2 +- .github/workflows/_reusable-publish.yml | 2 +- .github/workflows/_reusable-webapp-test.yml | 2 +- .github/workflows/on-push-to-branch.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_reusable-deploy.yml b/.github/workflows/_reusable-deploy.yml index 2e79b73d..779b95ea 100644 --- a/.github/workflows/_reusable-deploy.yml +++ b/.github/workflows/_reusable-deploy.yml @@ -67,7 +67,7 @@ jobs: env: TF_WORKSPACE: ${{ inputs.terraform_workspace }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-destroy.yml b/.github/workflows/_reusable-destroy.yml index 745d7057..567df761 100644 --- a/.github/workflows/_reusable-destroy.yml +++ b/.github/workflows/_reusable-destroy.yml @@ -64,7 +64,7 @@ jobs: env: TF_WORKSPACE: ${{ inputs.terraform_workspace }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: ref: ${{ inputs.image_tag }} - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-pipeline.yml b/.github/workflows/_reusable-pipeline.yml index 3ddcef0b..699ed121 100644 --- a/.github/workflows/_reusable-pipeline.yml +++ b/.github/workflows/_reusable-pipeline.yml @@ -66,7 +66,7 @@ jobs: run: working-directory: terraform steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: hashicorp/setup-terraform@v3 with: terraform_version: ">=1.5.0" diff --git a/.github/workflows/_reusable-publish.yml b/.github/workflows/_reusable-publish.yml index 91e7874a..20362ad9 100644 --- a/.github/workflows/_reusable-publish.yml +++ b/.github/workflows/_reusable-publish.yml @@ -47,7 +47,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Configure AWS credentials diff --git a/.github/workflows/_reusable-webapp-test.yml b/.github/workflows/_reusable-webapp-test.yml index a953ed9b..2dfa7ad8 100644 --- a/.github/workflows/_reusable-webapp-test.yml +++ b/.github/workflows/_reusable-webapp-test.yml @@ -21,7 +21,7 @@ jobs: name: Webapp unit tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-node@v4 with: node-version: 18.17.0 diff --git a/.github/workflows/on-push-to-branch.yml b/.github/workflows/on-push-to-branch.yml index 0c578b08..f8e3ac7a 100644 --- a/.github/workflows/on-push-to-branch.yml +++ b/.github/workflows/on-push-to-branch.yml @@ -17,7 +17,7 @@ jobs: run: working-directory: terraform steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: hashicorp/setup-terraform@v3 with: terraform_version: ">=1.5.0"