Skip to content

Commit 9e47d48

Browse files
chore(deps): 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] <support@github.com>
1 parent 2e78792 commit 9e47d48

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/release-preview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Git pull
1919
run: git pull origin main

.github/workflows/terraform-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
directories: ${{ steps.dirs.outputs.directories }}
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
- name: Get root directories
3939
id: dirs
@@ -56,7 +56,7 @@ jobs:
5656
rm -rf /opt/hostedtoolcache/go
5757
5858
- name: Checkout
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
- name: Terraform min/max versions
6262
id: minMax
@@ -96,7 +96,7 @@ jobs:
9696
rm -rf /opt/hostedtoolcache/go
9797
9898
- name: Checkout
99-
uses: actions/checkout@v5
99+
uses: actions/checkout@v6
100100
with:
101101
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
102102
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/terraform-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
2525
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-configs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212

1313
steps:
1414
- name: Checkout template repository
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
repository: infraspecdev/terraform-module-template
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
path: template-repo
2020

2121
- name: Checkout target repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
repository: ${{ github.repository }}
2525
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)