From 29a810bd0ca26e6c038afc0994a4e388567a8edd Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Fri, 29 Sep 2023 11:19:06 +0200 Subject: [PATCH] ci: use updated `actions/*` --- .github/workflows/CI.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a46e927..d90e81a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,20 +12,12 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - name: Cache Node.js modules - uses: actions/cache@v2 - with: - # npm cache files are stored in `~/.npm` on Linux/macOS - path: ~/.npm - key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.OS }}-node- - ${{ runner.OS }}- + cache: 'npm' - name: Install dependencies run: npm ci - name: Build