From e411766b80dc18daf06ac797131e0a525f6c0975 Mon Sep 17 00:00:00 2001 From: Jasper Zonneveld Date: Mon, 19 Feb 2024 09:22:35 +0100 Subject: [PATCH] ci: update actions --- .github/workflows/codestyle.yaml | 4 ++-- .github/workflows/tests.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codestyle.yaml b/.github/workflows/codestyle.yaml index 34f8e55..a6b22bf 100644 --- a/.github/workflows/codestyle.yaml +++ b/.github/workflows/codestyle.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -24,7 +24,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f8b17b9..d445e31 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -24,7 +24,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package-lock.json') }}