Skip to content

Commit b5da0d5

Browse files
build: downgrade actions/checkout version for improved compatibility
1 parent 6d62e9f commit b5da0d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rust-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
container:
3636
image: ${{ matrix.docker_image }}
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v2
3939
with:
4040
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
4141
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

.github/workflows/rust-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
container:
3636
image: ${{ matrix.docker_image }}
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v2
3939
with:
4040
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
4141
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

0 commit comments

Comments
 (0)