From 95ab9222d47294dda64cf1256b066469435b15b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:52:43 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 7. - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/container.yml | 2 +- .github/workflows/keyfactor-bootstrap-workflow.yml | 2 +- .github/workflows/mock_tests.yml | 6 +++--- .github/workflows/update-stores.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 3de2d3ee..664651bf 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -37,7 +37,7 @@ jobs: # Checkout code # https://github.com/actions/checkout - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Extract metadata (tags, labels) for Docker # If the pull request is not merged, do not include the edge tag and only include the sha tag. diff --git a/.github/workflows/keyfactor-bootstrap-workflow.yml b/.github/workflows/keyfactor-bootstrap-workflow.yml index 28997142..65a14a95 100644 --- a/.github/workflows/keyfactor-bootstrap-workflow.yml +++ b/.github/workflows/keyfactor-bootstrap-workflow.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Check out the code - uses: actions/checkout@v3 + uses: actions/checkout@v7 with: token: ${{ secrets.V2BUILDTOKEN}} diff --git a/.github/workflows/mock_tests.yml b/.github/workflows/mock_tests.yml index e3a3aef7..bf28320d 100644 --- a/.github/workflows/mock_tests.yml +++ b/.github/workflows/mock_tests.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 @@ -63,7 +63,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 @@ -97,7 +97,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v5 diff --git a/.github/workflows/update-stores.yml b/.github/workflows/update-stores.yml index 5925cc1f..c0325438 100644 --- a/.github/workflows/update-stores.yml +++ b/.github/workflows/update-stores.yml @@ -79,7 +79,7 @@ jobs: # If the branch with an open PR already exists, first check out that branch from kfutil - name: Check out existing repo merge branch if: env.PR_BRANCH == 'commit' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/kfutil' sparse-checkout: | @@ -92,7 +92,7 @@ jobs: # If the branch does not exist, first check out the main branch from kfutil. - name: Check out main if: env.PR_BRANCH == 'create' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/kfutil' sparse-checkout: | @@ -109,7 +109,7 @@ jobs: # Checkout and run the python tool - name: Check out python merge tool repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: 'keyfactor/integration-tools' path: './tools/'