From d868c4a8a67af9c38992ff3d5fb53a46a37547a5 Mon Sep 17 00:00:00 2001 From: Tailor Bot Date: Thu, 7 Nov 2024 13:30:18 +0200 Subject: [PATCH] Update .github/workflows/pr.yaml --- .github/workflows/pr.yaml | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 52ff407..aa7db77 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -13,22 +13,22 @@ jobs: name: licensing_node runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - run: npm ci - - name: Run setup-licensed - uses: jonabc/setup-licensed@v1 - with: - version: "3.x" - github_token: ${{ secrets.GITHUB_TOKEN }} - - run: licensed cache - - uses: jonabc/licensed-ci@v1 - with: - workflow: branch - github_token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + - uses: actions/cache@v3 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-node- + - run: npm ci + - name: Run setup-licensed + uses: github/setup-licensed@v1 + with: + version: "3.x" + github_token: ${{ secrets.GITHUB_TOKEN }} + - run: licensed cache + - uses: github/licensed-ci@v1 + with: + workflow: branch + github_token: ${{ secrets.GITHUB_TOKEN }}