Skip to content

Commit 437263e

Browse files
authored
Upgrade to actions/checkout@v4 (#731)
## Changes This should fix intermittent failures with v3 (see actions/checkout#1448)
1 parent 83443ba commit 437263e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository and submodules
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Unshallow
2626
run: git fetch --prune --unshallow
@@ -50,7 +50,7 @@ jobs:
5050

5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454

5555
- name: Setup Go
5656
uses: actions/setup-go@v4

.github/workflows/release-snapshot.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 and submodules
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Unshallow
1919
run: git fetch --prune --unshallow

.github/workflows/release.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 and submodules
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Unshallow
1818
run: git fetch --prune --unshallow

0 commit comments

Comments
 (0)