Skip to content

Commit 5047b0b

Browse files
Update actions/checkout action to v6
1 parent 6f94767 commit 5047b0b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/docker-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "Build Docker images"
2121
runs-on: ubuntu-24.04
2222
steps:
23-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
23+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2424

2525
- name: Set up Docker Buildx
2626
uses: docker/setup-buildx-action@v3
@@ -76,7 +76,7 @@ jobs:
7676
runs-on: ubuntu-24.04
7777
needs: build
7878
steps:
79-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
79+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
8080

8181
- name: Download artifact
8282
uses: actions/download-artifact@v6
@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-24.04
102102
needs: build
103103
steps:
104-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
104+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
105105

106106
- name: Download artifact
107107
uses: actions/download-artifact@v6

.github/workflows/gitleaks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: gitleaks
2323
runs-on: ubuntu-24.04
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
# yamllint disable rule:line-length

.github/workflows/markdown-lint.yml

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

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
21+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2222

2323
- name: Set up Node.js
2424
uses: actions/setup-node@v6

.github/workflows/rust-clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
actions: read
3333
steps:
3434
- name: Checkout code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: Install Rust toolchain
3838
# @v1

.github/workflows/rust-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
CARGO_TERM_COLOR: always
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Install Rust
2121
run: rustup update stable
2222
- name: Install Clippy
@@ -52,7 +52,7 @@ jobs:
5252

5353
steps:
5454
- name: Checkout repository
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656
with:
5757
fetch-depth: 0
5858
- name: Download coverage artifact
@@ -76,7 +76,7 @@ jobs:
7676

7777
steps:
7878
- name: Checkout repository
79-
uses: actions/checkout@v5
79+
uses: actions/checkout@v6
8080
with:
8181
fetch-depth: 0
8282
- name: Download coverage artifact

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323

2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Build
2727
run: cargo build --verbose
2828
- name: Run tests

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
19+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2020

2121
- name: Install yamllint
2222
run: pip install yamllint

0 commit comments

Comments
 (0)