Skip to content

Commit 0a2d1ff

Browse files
build(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 d74e369 commit 0a2d1ff

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
container:
2020
image: ghcr.io/linux-nvme/debian.python:latest
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Mark repo as safe for git
2424
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2525
- name: build
@@ -42,7 +42,7 @@ jobs:
4242
container:
4343
image: ghcr.io/linux-nvme/debian.python:latest
4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
- name: Mark repo as safe for git
4747
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
4848
- name: build
@@ -65,7 +65,7 @@ jobs:
6565
- arch: s390x
6666
- arch: ppc64le
6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
- name: enable foreign arch
7070
uses: dbhi/qus/action@main
7171
- name: Login to GitHub Container Registry
@@ -100,7 +100,7 @@ jobs:
100100
image: ghcr.io/linux-nvme/debian:latest
101101
if: github.ref == 'refs/heads/master'
102102
steps:
103-
- uses: actions/checkout@v5
103+
- uses: actions/checkout@v6
104104
- name: Mark repo as safe for git
105105
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
106106
- name: build
@@ -119,7 +119,7 @@ jobs:
119119
container:
120120
image: ghcr.io/linux-nvme/debian:latest
121121
steps:
122-
- uses: actions/checkout@v5
122+
- uses: actions/checkout@v6
123123
- name: Mark repo as safe for git
124124
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
125125
- name: build
@@ -132,7 +132,7 @@ jobs:
132132
container:
133133
image: ghcr.io/linux-nvme/debian:latest
134134
steps:
135-
- uses: actions/checkout@v5
135+
- uses: actions/checkout@v6
136136
- name: Mark repo as safe for git
137137
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
138138
- name: build
@@ -145,7 +145,7 @@ jobs:
145145
container:
146146
image: ghcr.io/linux-nvme/debian:latest
147147
steps:
148-
- uses: actions/checkout@v5
148+
- uses: actions/checkout@v6
149149
- name: Mark repo as safe for git
150150
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
151151
- name: build

.github/workflows/checkpatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
steps:
88
- name: 'Calculate PR commits + 1'
99
run: echo "PR_FETCH_DEPTH=$(( ${{ github.event.pull_request.commits }} + 1 ))" >> $GITHUB_ENV
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
with:
1212
ref: ${{ github.event.pull_request.head.sha }}
1313
fetch-depth: 0

.github/workflows/codeql.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Mark repo as safe for git
4545
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container:
1515
image: ghcr.io/linux-nvme/debian.python:latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Mark repo as safe for git
1919
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2020
- name: build

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
container:
2121
image: ghcr.io/linux-nvme/debian:latest
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- name: Mark repo as safe for git
2525
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2626
- name: build

.github/workflows/libnvme-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container:
1515
image: ghcr.io/linux-nvme/debian.python:latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Mark repo as safe for git
1919
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2020
- name: build

.github/workflows/libnvme-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
container:
1717
image: ghcr.io/linux-nvme/debian:latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Mark repo as safe for git
2121
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2222
- name: build

.github/workflows/libnvme-release-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
container:
2222
image: ghcr.io/linux-nvme/debian.python:latest
2323
steps:
24-
- uses: actions/checkout@v5
24+
- uses: actions/checkout@v6
2525

2626
- name: Allow workspace
2727
run: |
@@ -49,7 +49,7 @@ jobs:
4949
image: ghcr.io/linux-nvme/debian.python:latest
5050
steps:
5151
- name: Check out repository (with tags)
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
fetch-depth: 0 # Required for `git describe`
5555

.github/workflows/libnvme-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: write
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Mark repo as safe for git
1919
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2020
- uses: ncipollo/release-action@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
permissions:
1515
contents: write
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Mark repo as safe for git
1919
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
2020
- uses: ncipollo/release-action@v1

0 commit comments

Comments
 (0)