Skip to content

Commit 6fc14d7

Browse files
committed
ci: upgrade GitHub Actions workflows to checkout v5
- Update GitHub Actions workflows to use actions/checkout version 5 instead of version 4 Signed-off-by: Bo-Yi Wu <[email protected]>
1 parent d449cf1 commit 6fc14d7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/testing.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

@@ -57,7 +57,7 @@ jobs:
5757
go-version: ${{ matrix.go }}
5858

5959
- name: Checkout Code
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
with:
6262
ref: ${{ github.ref }}
6363

@@ -81,7 +81,7 @@ jobs:
8181
commitlint:
8282
runs-on: ubuntu-latest
8383
steps:
84-
- uses: actions/checkout@v4
84+
- uses: actions/checkout@v5
8585
with:
8686
fetch-depth: 0
8787
- uses: wagoid/commitlint-github-action@v5
@@ -111,7 +111,7 @@ jobs:
111111
# To report GitHub Actions status checks
112112
statuses: write
113113
steps:
114-
- uses: actions/checkout@v4
114+
- uses: actions/checkout@v5
115115
with:
116116
# super-linter needs the full git history to get the
117117
# list of files that changed across commits

0 commit comments

Comments
 (0)