From 36d17f00bc2ec5aa57faad91b1549ed2f76588a9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 05:54:13 +0000 Subject: [PATCH] chore(deps): pin dependencies --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09567f5..4030b32 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,17 +21,17 @@ jobs: pull-requests: write timeout-minutes: 10 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 with: fetch-depth: 0 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version: 20 registry-url: 'https://registry.npmjs.org' - id: npm-cache run: echo "dir=$(npm config get cache)" | tee -a "$GITHUB_OUTPUT" - id: npm-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: npm-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5918fc4..0088d68 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,14 +23,14 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 with: node-version: ${{ matrix.node }} - id: npm-cache run: echo "dir=$(npm config get cache)" | tee -a "$GITHUB_OUTPUT" - id: npm-cache-restore - uses: actions/cache/restore@v4 + uses: actions/cache/restore@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: npm-${{ hashFiles('package-lock.json') }} @@ -38,7 +38,7 @@ jobs: npm- - run: npm ci - run: npm test - - uses: actions/cache/save@v4 + - uses: actions/cache/save@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4 if: github.ref_name == 'main' with: path: ${{ steps.npm-cache.outputs.dir }}