Skip to content

Commit e16d29c

Browse files
committed
Revert checkout to v3 since v4 is broken - actions/checkout#1590
1 parent 79e03fa commit e16d29c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
2-
# version 20240124.002
2+
# version 20240124.003
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -61,7 +61,7 @@ jobs:
6161
container:
6262
image: perl:${{ matrix.perl-version }}
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v3
6565
- name: Platform check
6666
run: uname -a
6767
- name: Perl version check

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions macOS config for Perl 5 modules
2-
# version 20240124.002
2+
# version 20240124.003
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -38,7 +38,7 @@ jobs:
3838
perl:
3939
runs-on: macOS-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v3
4242
- name: Platform check
4343
run: uname -a
4444
- name: Set up Perl

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions release config for Perl 5 modules
2-
# version 20240124.002
2+
# version 20240124.003
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -48,7 +48,7 @@ jobs:
4848
container:
4949
image: perl:${{ matrix.perl-version }}
5050
steps:
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v3
5252
# Some older versions of Perl have trouble with hostnames in certs. I
5353
# haven't figured out why.
5454
- name: Setup environment

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions Windows config for Perl 5 modules
2-
# version 20240124.002
2+
# version 20240124.003
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -45,7 +45,7 @@ jobs:
4545
- windows-2022
4646
steps:
4747
- run: git config --global core.autocrlf false
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v3
4949
- name: Set up Perl
5050
run: |
5151
choco install strawberryperl

0 commit comments

Comments
 (0)