Skip to content

Commit 2525200

Browse files
authored
CI: Fix warning about restore cache failure (#869)
1 parent 2bd4573 commit 2525200

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030
- name: Prepare for Go
3131
run: |
3232
sudo apt-get install -y make gcc
33+
- name: Checkout code
34+
uses: actions/checkout@v4
3335
- name: Install Go
3436
uses: actions/setup-go@v5
3537
with:
3638
go-version: ${{ matrix.go }}
37-
- name: Checkout code
38-
uses: actions/checkout@v4
3939
- name: Run tests
4040
run: |
4141
# separate test to avoid RESET MASTER conflict
@@ -64,11 +64,11 @@ jobs:
6464
- name: Prepare for Go
6565
run: |
6666
sudo apt-get install -y make gcc
67+
- name: Checkout code
68+
uses: actions/checkout@v4
6769
- name: Install Go
6870
uses: actions/setup-go@v5
6971
with:
7072
go-version: "1.22"
71-
- name: Checkout code
72-
uses: actions/checkout@v4
7373
- name: Build on ${{ matrix.os }}/${{ matrix.arch }}
7474
run: GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build ./...

0 commit comments

Comments
 (0)