Skip to content

Commit 1214cad

Browse files
Update actions/checkout action to v6 (#140)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ba07bd8 commit 1214cad

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
group: cd-${{ matrix.project.repo }}
3737
steps:
3838
- name: Checkout project repo
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v6
4040
with:
4141
path: project-repo
4242
repository: ${{ matrix.project.repo }}

.github/workflows/create-or-update-test-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout project repo
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
path: project-repo
3737
repository: ${{ inputs.project_repo }}

template/.github/workflows/ci-{{app_name}}.yml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Lint
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v6
2828

2929
# https://github.com/docker/compose/issues/1973
3030
- name: Create required env files
@@ -38,7 +38,7 @@ jobs:
3838
name: Test
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242

4343
- run: make init-container
4444
- run: make precompile-assets

0 commit comments

Comments
 (0)