From 5d165576169053732652467ee2ec4d666b3c659d Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sun, 20 Apr 2025 19:49:12 +0200 Subject: [PATCH] ci: unpin actions Signed-off-by: Tilman Vatteroth --- .github/actions/setup-node/action.yml | 6 +++--- .github/workflows/docs-netlify-deploy.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/setup-node/action.yml b/.github/actions/setup-node/action.yml index b90dd9c78..f8ba0da7c 100644 --- a/.github/actions/setup-node/action.yml +++ b/.github/actions/setup-node/action.yml @@ -19,7 +19,7 @@ runs: shell: bash - name: Cache yarn cache - uses: actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1 + uses: actions/cache@v4.2.3 # v4.2.1 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -32,7 +32,7 @@ runs: shell: bash - name: Cache cypress binaries - uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 + uses: actions/cache@v4.2.3 # v4.1.2 id: cypress-cache with: path: /home/runner/.cache/cypress @@ -41,7 +41,7 @@ runs: cypress-${{ runner.os }}-${{ steps.cypress-version.outputs.cyver }} - name: Set up NodeJS - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@v4.4.0 # v4.1.0 with: node-version: ${{ inputs.NODEJS_VERSION }} diff --git a/.github/workflows/docs-netlify-deploy.yml b/.github/workflows/docs-netlify-deploy.yml index c35a57d4a..2882fdb0a 100644 --- a/.github/workflows/docs-netlify-deploy.yml +++ b/.github/workflows/docs-netlify-deploy.yml @@ -31,7 +31,7 @@ jobs: uses: actions/checkout@v4.2.2 # v4.2.2 - name: Set up NodeJS - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@v4.4.0 # v4.1.0 with: node-version: ${{ env.NODEJS_VERSION }}