Skip to content

Commit

Permalink
Add Node.js 22 to CI version matrix (axios#6633)
Browse files Browse the repository at this point in the history
* CI: add Node.js 22, drop non-LTS 21

* CI: update actions versions 3 -> 4

Previous actions version showed deprecation warnings when run. Update them to V4
  • Loading branch information
stscoundrel authored Oct 7, 2024
1 parent c96aa62 commit 023efb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 21.x]
node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x]
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: true
- name: Get changed files
Expand All @@ -50,7 +50,7 @@ jobs:
templates/**
bin/**
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
Expand Down

0 comments on commit 023efb6

Please sign in to comment.