From 1b8496f6bc4c3a27539473754aeb388101d78954 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 14:46:49 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 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/v5...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/create-artifact-with-features-files.yml | 2 +- .github/workflows/pr-validate-features-files.yml | 4 ++-- .github/workflows/update-test-durations.yml | 2 +- .github/workflows/upgrade-python-dependencies.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create-artifact-with-features-files.yml b/.github/workflows/create-artifact-with-features-files.yml index f1ec353..c478854 100644 --- a/.github/workflows/create-artifact-with-features-files.yml +++ b/.github/workflows/create-artifact-with-features-files.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Create artifact uses: actions/upload-artifact@v5 diff --git a/.github/workflows/pr-validate-features-files.yml b/.github/workflows/pr-validate-features-files.yml index 2af9281..54ffd7b 100644 --- a/.github/workflows/pr-validate-features-files.yml +++ b/.github/workflows/pr-validate-features-files.yml @@ -20,13 +20,13 @@ jobs: steps: # Clone repository that's calling this reusable workflow - name: Checkout current repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 2 # Clone the localstack/meta repo to access required Python scripts and JSON schema files - name: Checkout localstack/meta repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'localstack/meta' sparse-checkout: | diff --git a/.github/workflows/update-test-durations.yml b/.github/workflows/update-test-durations.yml index 33f8b42..48a7803 100644 --- a/.github/workflows/update-test-durations.yml +++ b/.github/workflows/update-test-durations.yml @@ -34,7 +34,7 @@ jobs: name: "Download, merge and publish test durations" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: path: ${{ inputs.repository-name }} diff --git a/.github/workflows/upgrade-python-dependencies.yml b/.github/workflows/upgrade-python-dependencies.yml index 4fd226e..69d1ea6 100644 --- a/.github/workflows/upgrade-python-dependencies.yml +++ b/.github/workflows/upgrade-python-dependencies.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python id: setup-python