Skip to content

Commit fd6a3ab

Browse files
github-actions(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 0b86948 commit fd6a3ab

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
# necessary in order to show latest updates in docs
1717
fetch-depth: 0
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Install Node.js
2121
uses: actions/setup-node@v4

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
ENV_FILE: .env.docker-compose.dev
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Install Node.js
3434
uses: actions/setup-node@v4

.github/workflows/deploy-template.yml

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

5757
steps:
5858
- name: Checkout
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v6
6060

6161
- name: Configure AWS credentials
6262
uses: aws-actions/configure-aws-credentials@v4

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ENV_FILE: .env.docker-compose.dev
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3737

.github/workflows/ecrbuild-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3939
- name: Get image tag

.github/workflows/ecrbuild-template.yml

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

4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v6
4747
with:
4848
ref: ${{ github.event.pull_request.head.sha || github.sha }}
4949

.github/workflows/on_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
docs: ${{ steps.changes.outputs.docs }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626
- uses: dorny/paths-filter@v3
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
ref: ${{ github.event.pull_request.head.sha }}
@@ -186,7 +186,7 @@ jobs:
186186
if: github.event.action == 'closed' && needs.path-filter.outputs.docs == 'true'
187187
runs-on: ubuntu-latest
188188
steps:
189-
- uses: actions/checkout@v4
189+
- uses: actions/checkout@v6
190190

191191
- name: Close docs preview
192192
uses: rossjrw/pr-preview-action@v1

.github/workflows/pull-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 30
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6
4949

5050
- name: Copy .env file
5151
run: cp ./self-host/.env.example ./self-host/.env

0 commit comments

Comments
 (0)