Skip to content

Commit db6b97d

Browse files
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] <[email protected]>
1 parent 704337b commit db6b97d

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ jobs:
5454
run: apt-get update -y
5555
# See comments beginning at
5656
# https://github.com/actions/runner/issues/763#issuecomment-1435474884
57-
# Without Git, actions/checkout@v4 will resort to REST and will not
57+
# Without Git, actions/checkout@v6 will resort to REST and will not
5858
# create a .git folder or .git.config. The Problem Matcher looks for
5959
# .git/config to find where the root of the repo is, so it must be
6060
# present.
6161
- name: Install Git
6262
run: apt-get -y install git
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v6
6464
with:
6565
persist-credentials: false
6666
- name: Install build tools

.github/workflows/debian.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
run: apt-get update -y
2626
# See comments beginning at
2727
# https://github.com/actions/runner/issues/763#issuecomment-1435474884
28-
# Without Git, actions/checkout@v4 will resort to REST and will not
28+
# Without Git, actions/checkout@v6 will resort to REST and will not
2929
# create a .git folder or .git.config. The Problem Matcher looks for
3030
# .git/config to find where the root of the repo is, so it must be
3131
# present.
3232
- name: Install Git
3333
run: apt-get -y install git
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
with:
3636
persist-credentials: false
3737
- name: Install build tools
@@ -76,7 +76,7 @@ jobs:
7676
architecture: [amd64]
7777
container: debian:${{ matrix.image_tag }}
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v6
8080
with:
8181
persist-credentials: false
8282
- name: Download build artifact

.github/workflows/isort.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
isort:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313
with:
1414
persist-credentials: false
1515
- uses: isort/isort-action@v1

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
run: apt-get update -y
1515
# See comments beginning at
1616
# https://github.com/actions/runner/issues/763#issuecomment-1435474884
17-
# Without Git, actions/checkout@v4 will resort to REST and will not
17+
# Without Git, actions/checkout@v6 will resort to REST and will not
1818
# create a .git folder or .git.config. The Problem Matcher looks for
1919
# .git/config to find where the root of the repo is, so it must be
2020
# present.
2121
- name: Install Git
2222
run: apt-get -y install git
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
with:
2525
persist-credentials: false
2626
- name: Install build tools
@@ -267,7 +267,7 @@ jobs:
267267
name: weblint
268268
runs-on: ubuntu-latest
269269
steps:
270-
- uses: actions/checkout@v4
270+
- uses: actions/checkout@v6
271271
with:
272272
persist-credentials: false
273273
- name: Setup Node.js v18

0 commit comments

Comments
 (0)