Skip to content

Commit ba9d49e

Browse files
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](actions/checkout@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] <[email protected]>
1 parent bc98c57 commit ba9d49e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
--health-retries 5
2323
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Set up Ruby
2828
uses: ruby/setup-ruby@v1

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: echo "Deploying to ${{ needs.determine_environment.outputs.env_name }}"
5353

5454
- name: Checkout
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: Debug OIDC claims
5858
run: |

.github/workflows/eval.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
matrix: ${{ steps.set-matrix.outputs.matrix }}
5353
runs: ${{ steps.set-runs.outputs.runs }}
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656
- name: Debug OIDC claims
5757
run: |
5858
echo "GitHub repository: ${{ github.repository }}"
@@ -188,7 +188,7 @@ jobs:
188188
run: ${{ fromJson(needs.build.outputs.runs) }}
189189
max-parallel: 10
190190
steps:
191-
- uses: actions/checkout@v5
191+
- uses: actions/checkout@v6
192192
- name: Configure AWS credentials
193193
uses: aws-actions/configure-aws-credentials@v5
194194
with:

.github/workflows/plan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: echo "Tofu config directory ./terraform/config/${{ github.event.inputs.environment }}"
2828

2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Configure AWS credentials
3333
uses: aws-actions/configure-aws-credentials@v5

.github/workflows/python_components.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python 3.12

0 commit comments

Comments
 (0)