Skip to content

Commit c641732

Browse files
Update actions/checkout action to v6
1 parent 5de7ba0 commit c641732

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# yamllint enable rule:line-length
6161
steps:
6262
- name: Checkout repository
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464

6565
# Initializes the CodeQL tools for scanning.
6666
- name: Initialize CodeQL

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
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

.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
- uses: gitleaks/gitleaks-action@v2

.github/workflows/go-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: "Go CI Tests Coverage"
2020
runs-on: "ubuntu-24.04"
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
with:
2424
# Shallow clones should be disabled for a better relevancy of analysis
2525
fetch-depth: 0
@@ -55,7 +55,7 @@ jobs:
5555

5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
with:
6060
fetch-depth: 0
6161
- name: Download coverage artifact
@@ -77,7 +77,7 @@ jobs:
7777

7878
steps:
7979
- name: Checkout repository
80-
uses: actions/checkout@v5
80+
uses: actions/checkout@v6
8181
with:
8282
fetch-depth: 0
8383

.github/workflows/go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go: ["1.24.x", "1.25.x"]
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Set up Go
2828
uses: actions/setup-go@v6

.github/workflows/go-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go: ["1.24.x", "1.25.x"]
2323
runs-on: ${{ matrix.os }}
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- name: Set up Go
2828
uses: actions/setup-go@v6

.github/workflows/markdown-lint.yml

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

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
27+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6
2828

2929
- name: Set up Node.js ${{ matrix.node-version }}
3030
uses: actions/setup-node@v6

.github/workflows/yamllint.yml

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

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

0 commit comments

Comments
 (0)