Skip to content

Commit 64654c7

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] <[email protected]>
1 parent becae3d commit 64654c7

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 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: build
2424
run: |
2525
scripts/build.sh -b ${{ matrix.buildtype }} -c ${{ matrix.compiler }} -x
@@ -40,7 +40,7 @@ jobs:
4040
- arch: s390x
4141
- arch: ppc64le
4242
steps:
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
- name: enable foreign arch
4545
uses: dbhi/qus/action@main
4646
- name: Login to GitHub Container Registry
@@ -73,7 +73,7 @@ jobs:
7373
container:
7474
image: ghcr.io/linux-nvme/debian:latest
7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777
- name: build
7878
run: |
7979
scripts/build.sh -b release -c gcc libdbus
@@ -92,7 +92,7 @@ jobs:
9292
image: ghcr.io/linux-nvme/debian:latest
9393
if: github.ref == 'refs/heads/master'
9494
steps:
95-
- uses: actions/checkout@v5
95+
- uses: actions/checkout@v6
9696
- name: build
9797
run: |
9898
scripts/build.sh -b release -c gcc fallback
@@ -109,7 +109,7 @@ jobs:
109109
container:
110110
image: ghcr.io/linux-nvme/debian:latest
111111
steps:
112-
- uses: actions/checkout@v5
112+
- uses: actions/checkout@v6
113113
- name: build
114114
run: |
115115
scripts/build.sh -m muon

.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/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: build
1919
run: |
2020
scripts/build.sh coverage

.github/workflows/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: build
2121
run: |
2222
scripts/build.sh docs

.github/workflows/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/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
- uses: ncipollo/release-action@v1
1919
with:
2020
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)