Skip to content

Commit

Permalink
Merge pull request #13 from briandfoy/checkout_v3
Browse files Browse the repository at this point in the history
Update to checkout@v3
  • Loading branch information
briandfoy committed Jan 2, 2023
2 parents af45a1c + 7f4533f commit cc890d1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/linux.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
# version 20220828.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -10,6 +10,7 @@ on:
branches:
- '**'
- '!**appveyor**'
- '!**circleci**'
- '!**macos**'
- '!**notest**'
- '!**release**'
Expand All @@ -21,6 +22,7 @@ on:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/macos.yml'
- '.github/workflows/release.yml'
Expand Down Expand Up @@ -58,7 +60,7 @@ jobs:
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Platform check
run: uname -a
- name: Perl version check
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/macos.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions macOS config for Perl 5 modules
# version 20220828.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -10,6 +10,7 @@ on:
branches:
- '**'
- '!**appveyor**'
- '!**circleci**'
- '!**linux**'
- '!**notest**'
- '!**release**'
Expand All @@ -21,6 +22,7 @@ on:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/linux.yml'
- '.github/workflows/release.yml'
Expand All @@ -36,7 +38,7 @@ jobs:
perl:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Platform check
run: uname -a
- name: Set up Perl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions release config for Perl 5 modules
# version 20220827.001
# version 20220827.002
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -21,7 +21,7 @@ jobs:
container:
image: perl:${{ matrix.perl-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
# Some older versions of Perl have trouble with hostnames in certs. I
# haven't figured out why.
- name: Setup environment
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/windows.yml
@@ -1,5 +1,5 @@
# brian's standard GitHub Actions Windows config for Perl 5 modules
# version 20220828.001
# version 20220902.001
# https://github.com/briandfoy/github_workflows
# https://github.com/features/actions
# This file is licensed under the Artistic License 2.0
Expand All @@ -10,6 +10,7 @@ on:
branches:
- '**'
- '!**appveyor**'
- '!**circleci**'
- '!**linux**'
- '!**macos**'
- '!**notest**'
Expand All @@ -21,6 +22,7 @@ on:
# list all the files which are irrelevant to the tests
# non-code, support files, docs, etc
- '.appveyor.yml'
- '.circleci'
- '.gitattributes'
- '.github/workflows/linux.yml'
- '.github/workflows/macos.yml'
Expand All @@ -42,7 +44,7 @@ jobs:
- windows-2019
- windows-2022
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Perl
run: |
choco install strawberryperl
Expand Down

0 comments on commit cc890d1

Please sign in to comment.