From 9ff98d54281c7dcf195d44ede4b84287e93ce82c Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Fri, 7 Feb 2025 22:02:35 +0100 Subject: [PATCH] chore: Update Github actions (#160) --- .github/workflows/test-and-release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index bbe8bcc..f3796aa 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -22,21 +22,21 @@ jobs: steps: - name: ⬇️ Checkout repo - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3 + uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # pin@main - name: ⎔ Setup node ${{ matrix.node-version }} - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3 + uses: actions/setup-node@802632921f8532d2409ae6eac3313b6f81f11122 # pin@main with: node-version: ${{ matrix.node-version }} cache: "npm" - name: 🗄 Cache node_modules id: cache-node_modules - uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # pin@v3 + uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46 # pin@main with: path: "**/node_modules" key: node_modules-${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} - name: 🗄 Cache .eslintcache - uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0 # pin@v3 + uses: actions/cache@36f1e144e1c8edb0a652766b484448563d8baf46 # pin@main with: path: .eslintcache key: eslintcache-${{ runner.os }}-node-${{ matrix.node-version }}-${{ @@ -54,7 +54,7 @@ jobs: CLOCKODO_API_KEY: ${{ secrets.CLOCKODO_API_KEY }} - name: ⬆️ Upload coverage report if: "matrix.node-version == '22.x'" - uses: coverallsapp/github-action@9ba913c152ae4be1327bfb9085dc806cedb44057 # pin@1.1.3 + uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # pin@main with: github-token: ${{ secrets.GITHUB_TOKEN }}