Skip to content

Commit

Permalink
Updating to newer checkout actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Mar 9, 2024
1 parent e88d701 commit 893a9f1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: perl -V
run: perl -V
- name: Install Dependencies
uses: perl-actions/install-with-cpm@v1
uses: perl-actions/install-with-cpm@stable
with:
cpanfile: "cpanfile"
- name: Makefile.PL
Expand Down Expand Up @@ -67,11 +67,11 @@ jobs:
image: perl:${{ matrix.perl-version }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: perl -V
run: perl -V
- name: Install Dependencies
uses: perl-actions/install-with-cpm@v1
uses: perl-actions/install-with-cpm@stable
with:
sudo: false
cpanfile: "cpanfile"
Expand All @@ -91,13 +91,13 @@ jobs:
PERL_CARTON_PATH: $GITHUB_WORKSPACE/local

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Perl
run: brew install perl
- name: perl -V
run: perl -V
- name: Install Dependencies
uses: perl-actions/install-with-cpm@v1
uses: perl-actions/install-with-cpm@stable
with:
sudo: false
cpanfile: "cpanfile"
Expand All @@ -110,15 +110,15 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Perl
run: |
choco install strawberryperl
echo 'PATH=C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin' >> $GITHUB_ENV
- name: perl -V
run: perl -V
- name: Install Dependencies
uses: perl-actions/install-with-cpm@v1
uses: perl-actions/install-with-cpm@stable
with:
sudo: false
cpanfile: "cpanfile"
Expand Down

0 comments on commit 893a9f1

Please sign in to comment.