Update CI dependencies (#961)

This commit is contained in:
KiloQubit 2023-06-14 21:26:02 -04:00 committed by GitHub
parent b1ad46e22b
commit 81b5b1c250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -20,11 +20,11 @@ jobs:
GIT_PULL_REQUEST: ${{ github.event.number }} GIT_PULL_REQUEST: ${{ github.event.number }}
steps: steps:
- name: Checkout Actions - name: Checkout Actions
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Cache Folder - name: Cache Folder
id: cache-folder id: cache-folder
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: ci_cache path: ci_cache
key: voron-ci key: voron-ci
@ -35,7 +35,7 @@ jobs:
echo "GIT_BRANCH: ${GIT_BRANCH}" echo "GIT_BRANCH: ${GIT_BRANCH}"
echo "GIT_PULL_REQUEST: ${GIT_PULL_REQUEST}" echo "GIT_PULL_REQUEST: ${GIT_PULL_REQUEST}"
- name: Setup NPM - name: Setup NPM
uses: actions/setup-node@v1 uses: actions/setup-node@v3
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Install NPM scripts - name: Install NPM scripts