Skip to content

Commit 0dd5749

Browse files
authored
Merge pull request #46 from briandfoy/checkout_v3
Update to checkout@v3
2 parents 262cd26 + e774e0b commit 0dd5749

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

.github/workflows/linux.yml

Lines changed: 4 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 20220828.001
2+
# version 20220902.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -10,6 +10,7 @@ on:
1010
branches:
1111
- '**'
1212
- '!**appveyor**'
13+
- '!**circleci**'
1314
- '!**macos**'
1415
- '!**notest**'
1516
- '!**release**'
@@ -21,6 +22,7 @@ on:
2122
# list all the files which are irrelevant to the tests
2223
# non-code, support files, docs, etc
2324
- '.appveyor.yml'
25+
- '.circleci'
2426
- '.gitattributes'
2527
- '.github/workflows/macos.yml'
2628
- '.github/workflows/release.yml'
@@ -54,7 +56,7 @@ jobs:
5456
container:
5557
image: perl:${{ matrix.perl-version }}
5658
steps:
57-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v3
5860
- name: Platform check
5961
run: uname -a
6062
- name: Perl version check

.github/workflows/macos.yml

Lines changed: 4 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 20220828.001
2+
# version 20220902.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -10,6 +10,7 @@ on:
1010
branches:
1111
- '**'
1212
- '!**appveyor**'
13+
- '!**circleci**'
1314
- '!**linux**'
1415
- '!**notest**'
1516
- '!**release**'
@@ -21,6 +22,7 @@ on:
2122
# list all the files which are irrelevant to the tests
2223
# non-code, support files, docs, etc
2324
- '.appveyor.yml'
25+
- '.circleci'
2426
- '.gitattributes'
2527
- '.github/workflows/linux.yml'
2628
- '.github/workflows/release.yml'
@@ -36,7 +38,7 @@ jobs:
3638
perl:
3739
runs-on: macOS-latest
3840
steps:
39-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4042
- name: Platform check
4143
run: uname -a
4244
- 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 20220827.001
2+
# version 20220827.002
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -21,7 +21,7 @@ jobs:
2121
container:
2222
image: perl:${{ matrix.perl-version }}
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
# Some older versions of Perl have trouble with hostnames in certs. I
2626
# haven't figured out why.
2727
- name: Setup environment

.github/workflows/windows.yml

Lines changed: 4 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 20220828.001
2+
# version 20220902.001
33
# https://github.com/briandfoy/github_workflows
44
# https://github.com/features/actions
55
# This file is licensed under the Artistic License 2.0
@@ -10,6 +10,7 @@ on:
1010
branches:
1111
- '**'
1212
- '!**appveyor**'
13+
- '!**circleci**'
1314
- '!**linux**'
1415
- '!**macos**'
1516
- '!**notest**'
@@ -21,6 +22,7 @@ on:
2122
# list all the files which are irrelevant to the tests
2223
# non-code, support files, docs, etc
2324
- '.appveyor.yml'
25+
- '.circleci'
2426
- '.gitattributes'
2527
- '.github/workflows/linux.yml'
2628
- '.github/workflows/macos.yml'
@@ -42,7 +44,7 @@ jobs:
4244
- windows-2019
4345
- windows-2022
4446
steps:
45-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v3
4648
- name: Set up Perl
4749
run: |
4850
choco install strawberryperl

0 commit comments

Comments
 (0)