Skip to content

Commit 90add5d

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 eea6b04 commit 90add5d

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.github/workflows/apply.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
shell: bash
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Discover workspaces
2828
id: workspaces
2929
run: echo "this=$(ls github | jq --raw-input '[.[0:-4]]' | jq -sc add)" >> $GITHUB_OUTPUT
@@ -74,7 +74,7 @@ jobs:
7474
working-directory: terraform
7575
steps:
7676
- name: Checkout
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878
- name: Setup terraform
7979
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
8080
with:

.github/workflows/clean.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
shell: bash
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
- name: Discover workspaces
3535
id: workspaces
3636
env:
@@ -69,7 +69,7 @@ jobs:
6969
shell: bash
7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v5
72+
uses: actions/checkout@v6
7373
- name: Setup terraform
7474
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
7575
with:

.github/workflows/cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
TF_WORKSPACE: ${{ github.repository_owner }}
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v5
40+
uses: actions/checkout@v6
4141
- name: Install pnpm
4242
uses: pnpm/action-setup@v4
4343
with:

.github/workflows/fix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
skip-fix: ${{ steps.skip-fix.outputs.this }}
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
- if: github.event_name == 'pull_request_target'
4040
env:
4141
NUMBER: ${{ github.event.pull_request.number }}
@@ -82,7 +82,7 @@ jobs:
8282
TF_VAR_write_delay_ms: 300
8383
steps:
8484
- name: Checkout
85-
uses: actions/checkout@v5
85+
uses: actions/checkout@v6
8686
- if: github.event_name == 'pull_request_target'
8787
env:
8888
NUMBER: ${{ github.event.pull_request.number }}
@@ -151,14 +151,14 @@ jobs:
151151
installation_retrieval_payload: ${{ secrets[format('RW_GITHUB_APP_INSTALLATION_ID_{0}', github.repository_owner)] || secrets.RW_GITHUB_APP_INSTALLATION_ID }}
152152
private_key: ${{ secrets.RW_GITHUB_APP_PEM_FILE }}
153153
- name: Checkout
154-
uses: actions/checkout@v5
154+
uses: actions/checkout@v6
155155
with:
156156
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
157157
ref: ${{ github.event.pull_request.head.sha || github.sha }}
158158
token: ${{ steps.token.outputs.token }}
159159
path: head
160160
- name: Checkout
161-
uses: actions/checkout@v5
161+
uses: actions/checkout@v6
162162
with:
163163
path: base
164164
- name: Download YAML configs

.github/workflows/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
TF_WORKSPACE: ${{ github.repository_owner }}
3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
- name: Install pnpm
4040
uses: pnpm/action-setup@v4
4141
with:

.github/workflows/plan.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
workspaces: ${{ steps.workspaces.outputs.this }}
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
- if: github.event_name == 'pull_request_target'
3030
env:
3131
NUMBER: ${{ github.event.pull_request.number }}
@@ -70,7 +70,7 @@ jobs:
7070
TF_VAR_write_delay_ms: 300
7171
steps:
7272
- name: Checkout
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
- if: github.event_name == 'pull_request_target'
7575
env:
7676
NUMBER: ${{ github.event.pull_request.number }}
@@ -112,7 +112,7 @@ jobs:
112112
AWS_SECRET_ACCESS_KEY: ${{ secrets.RO_AWS_SECRET_ACCESS_KEY }}
113113
steps:
114114
- name: Checkout
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116
- if: github.event_name == 'pull_request_target'
117117
env:
118118
NUMBER: ${{ github.event.pull_request.number }}

.github/workflows/sync.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
shell: bash
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Discover workspaces
2929
id: workspaces
3030
env:
@@ -63,7 +63,7 @@ jobs:
6363
shell: bash
6464
steps:
6565
- name: Checkout
66-
uses: actions/checkout@v5
66+
uses: actions/checkout@v6
6767
- name: Setup terraform
6868
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
6969
with:
@@ -123,7 +123,7 @@ jobs:
123123
installation_retrieval_payload: ${{ secrets[format('RW_GITHUB_APP_INSTALLATION_ID_{0}', github.repository_owner)] || secrets.RW_GITHUB_APP_INSTALLATION_ID }}
124124
private_key: ${{ secrets.RW_GITHUB_APP_PEM_FILE }}
125125
- name: Checkout
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v6
127127
with:
128128
token: ${{ steps.token.outputs.token }}
129129
- uses: ./.github/actions/git-config-user

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
run:
2121
shell: bash
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Install pnpm
2525
uses: pnpm/action-setup@v4
2626
with:

.github/workflows/upgrade_reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
installation_retrieval_payload: ${{ secrets.GITHUB_APP_INSTALLATION_ID }}
3434
private_key: ${{ secrets.GITHUB_APP_PEM_FILE }}
3535
- name: Checkout GitHub Management template
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
repository: pl-strflt/github-mgmt-template
3939
path: github-mgmt-template
4040
ref: ${{ github.event.inputs.ref }}
4141
- name: Checkout GitHub Management
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
path: github-mgmt
4545
token: ${{ steps.token.outputs.token }}

0 commit comments

Comments
 (0)