summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2022-04-16 19:07:57 -0700
committerRuss Allbery <eagle@eyrie.org>2022-04-16 19:07:57 -0700
commit567fd2abe21110ad50698f7b45286144fd580ab4 (patch)
tree8ba02433e389090519efca37e46a1dd63a11e233
parent63e3837384909fb22254a2a99031d6330a844af3 (diff)
Update GitHub Actions dependencies
Update to the latest versions, and use the major version dependency for install-with-cpanm.
-rw-r--r--.github/workflows/build.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index b0aba77..dd6ecf4 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -36,7 +36,7 @@ jobs:
- "heimdal"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- name: install
run: sudo -E ci/install
@@ -47,14 +47,14 @@ jobs:
perl -e 'print "::set-output name=version::", $^V, "\n"'
- name: Cache Perl modules
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: ~/perl5
key: ${{ runner.os }}-perl-${{ steps.get-perl.outputs.version }}-${{ hashFiles('ci/cpanfile') }}
restore-keys: |
${{ runner.os }}-perl-${{ steps.get-perl.outputs.version }}-
- - uses: perl-actions/install-with-cpanm@v1.3
+ - uses: perl-actions/install-with-cpanm@v1
env:
PERL5LIB: ${{ env.HOME }}/perl5
with: