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