Skip to content

Commit 5cb0943

Browse files
chore(deps): bump actions/checkout from 4 to 5 (#10907)
Dependabot couldn't find the original pull request head commit, 0292612. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b8a1aa4 commit 5cb0943

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

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

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

3434
- name: Setup Go
3535
uses: actions/setup-go@v5

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- uses: actions/setup-go@v5
3030
with:
3131
go-version: 1.25.x
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- run: docker build -t $IMAGE_NAME:$WIP_IMAGE_TAG .
3434
- run: docker run --rm $IMAGE_NAME:$WIP_IMAGE_TAG --version

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
LEGACY_IMAGE_NAME: ipfs/go-ipfs
3939
steps:
4040
- name: Check out the repo
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Set up QEMU
4444
uses: docker/setup-qemu-action@v3

.github/workflows/gateway-conformance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
with:
5555
name: ${{ github.job }}
5656
- name: Checkout kubo-gateway
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
path: kubo-gateway
6060
- name: Build kubo-gateway
@@ -141,7 +141,7 @@ jobs:
141141
with:
142142
name: ${{ github.job }}
143143
- name: Checkout kubo-gateway
144-
uses: actions/checkout@v4
144+
uses: actions/checkout@v5
145145
with:
146146
path: kubo-gateway
147147
- name: Build kubo-gateway

.github/workflows/gobuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/setup-go@v5
3232
with:
3333
go-version: 1.25.x
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- run: make cmd/ipfs-try-build
3636
env:
3737
TEST_FUSE: 1

.github/workflows/golang-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
timeout-minutes: 10
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
submodules: recursive
2828
- uses: actions/setup-go@v5

.github/workflows/golint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
- uses: actions/setup-go@v5
3333
with:
3434
go-version: 1.25.x
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- run: make -O test_go_lint

.github/workflows/gotest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
go-version: 1.25.x
3636
- name: Check out Kubo
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
- name: Install missing tools
3939
run: sudo apt update && sudo apt install -y zsh
4040
- name: 👉️ If this step failed, go to «Summary» (top left) → inspect the «Failures/Errors» table

.github/workflows/interop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/setup-go@v5
4040
with:
4141
go-version: ${{ env.GO_VERSION }}
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- run: make build
4444
- uses: actions/upload-artifact@v4
4545
with:
@@ -97,7 +97,7 @@ jobs:
9797
name: kubo
9898
path: cmd/ipfs
9999
- run: chmod +x cmd/ipfs/ipfs
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v5
101101
with:
102102
repository: ipfs/ipfs-webui
103103
path: ipfs-webui

.github/workflows/sharness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
go-version: 1.25.x
2929
- name: Checkout Kubo
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
path: kubo
3333
- name: Install missing tools

0 commit comments

Comments
 (0)