Skip to content

Commit 92a14b2

Browse files
authored
chore: update actions/checkout action to v5 (#487)
1 parent abcd384 commit 92a14b2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/integration-tests-on-emulator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
go-version: 1.25.x
2020
- name: Checkout code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
- name: Run integration tests on emulator
2323
run: go test -race
2424
env:

.github/workflows/integration-tests-on-production.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 code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Auth
3232
uses: google-github-actions/auth@v2
3333
with:

.github/workflows/samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Run samples
1818
working-directory: ./examples
1919
run: go test -short

.github/workflows/snippets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
go-version: ${{ matrix.go-version }}
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Run snippets
1818
working-directory: ./snippets
1919
run: go test -short

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
go-version: ${{ matrix.go-version }}
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Run unit tests
2121
run: go test -race -short
2222

@@ -33,7 +33,7 @@ jobs:
3333
go install honnef.co/go/tools/cmd/staticcheck@latest
3434
3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: vet .
3939
run: go vet ./...

0 commit comments

Comments
 (0)