Skip to content

Commit 71ab7ad

Browse files
chore(deps): bump actions/checkout from 4 to 5 (#4964)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a2d109d commit 71ab7ad

File tree

11 files changed

+19
-19
lines changed

11 files changed

+19
-19
lines changed

.github/workflows/codeql-analysis.yml

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

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
# We must fetch at least the immediate parents so that if this is
4141
# a pull request then we can checkout the head.

.github/workflows/coverage.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
# Checkout should always be before setup-go to ensure caching is working
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 2
1919
- uses: actions/setup-go@v5

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
environment: actions
1313
steps:
1414
- name: Check out the release tag
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
ref: ${{ github.event.release.tag_name }}
1818
- name: Verify release commit
19-
run: | # Commit hash to compare with the commit returned by actions/checkout@v4 - Tag to compare with the latest release
19+
run: | # Commit hash to compare with the commit returned by actions/checkout@v5 - Tag to compare with the latest release
2020
echo "Checked out commit: $(git rev-parse HEAD)"
2121
echo "Expected tag: ${{ github.event.release.tag_name }}"
2222
- name: prepare temporary folder for build

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# Checkout should always be before setup-go to ensure caching is working
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: actions/setup-go@v5
1717
with:
1818
go-version: '1.24'
@@ -26,7 +26,7 @@ jobs:
2626
markdown-link-check:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.16
3131
with:
3232
use-quiet-mode: 'yes'

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
- name: Labeler
1515
uses: actions/labeler@v5
1616
with:

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Github Actions lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Check workflow files
1717
uses: docker://rhysd/actionlint:latest
1818
with:
@@ -22,15 +22,15 @@ jobs:
2222
name: dockerfile-lint
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: dockerfile-lint
2727
run: docker build --check .
2828

2929
golangci:
3030
name: golangci-lint
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- name: golangci-lint
3535
uses: golangci/golangci-lint-action@v8
3636
with:

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
# Checkout should always be before setup-go to ensure caching is working
5656
- name: Checkout
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
- name: Install Go
5959
uses: actions/setup-go@v5
6060
with:
@@ -96,7 +96,7 @@ jobs:
9696
steps:
9797
# Checkout should always be before setup-go to ensure caching is working
9898
- name: Checkout
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v5
100100
- name: Install Go
101101
uses: actions/setup-go@v5
102102
with:

.github/workflows/purge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# Checkout should always be before setup-go to ensure caching is working
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Install Go
1717
uses: actions/setup-go@v5
1818
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

@@ -49,7 +49,7 @@ jobs:
4949
with:
5050
version: 6.0.2
5151
- name: Checkout
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
with:
5454
fetch-depth: 1
5555
- name: Build

.github/workflows/unit-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
git config --global core.eol lf
2121
# Checkout should always be before setup-go to ensure caching is working
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 1
2626
- name: Install Go
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
# Checkout should always be before setup-go to ensure caching is working
4343
- name: Checkout
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
fetch-depth: 1
4747
- name: Install Go
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
fetch-depth: 1
6565
- name: Build image in Docker

0 commit comments

Comments
 (0)