Skip to content

Commit

Permalink
update build env
Browse files Browse the repository at this point in the history
  • Loading branch information
oetiker committed Jan 31, 2024
1 parent aab1f13 commit dec1c53
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- '5.38'

node:
- '16.x'
- '18.x'
- '20.x'
- '21.x'

exclude:
- os: ubuntu-18.04
Expand All @@ -41,10 +41,10 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

Expand All @@ -55,14 +55,14 @@ jobs:

- name: CPAN Cache
id: cpan-cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: thirdparty
key: ${{ matrix.os }}-cpan-${{ matrix.perl }}-${{ hashFiles('**/Makefile.PL') }}-${{ hashFiles('**/cpanfile') }}

- name: Node Cache
id: node-cache
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: node_modules
key: ${{ matrix.os }}-node-${{ matrix.node }}-${{ hashFiles('**/package.json') }}
Expand Down

0 comments on commit dec1c53

Please sign in to comment.