diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index fb45511..a791f9e 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -32,7 +32,7 @@ jobs: image: perl:${{ matrix.perl-version }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Probe wd run: | @@ -67,7 +67,7 @@ jobs: # run: rm ~/perl5/${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - name: Cache CPAN modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/perl5 key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5781130..99fc4cd 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -20,7 +20,7 @@ jobs: runs-on: macOS-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Probe wd run: | @@ -63,7 +63,7 @@ jobs: # run: rm ~/perl5/${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }} - name: Cache CPAN modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: ~/perl5 key: ${{ runner.os }}-build-${{ hashFiles('perlversion.txt') }}