From d47636092a014a33958eab1d225bff6b9e9658fe Mon Sep 17 00:00:00 2001 From: Felipe Suero Date: Mon, 1 May 2023 10:15:24 -0400 Subject: [PATCH] don't pin actions stuff --- .github/workflows/buildtest.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- .github/workflows/release.yml | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildtest.yml b/.github/workflows/buildtest.yml index 7fe5644..f80be99 100644 --- a/.github/workflows/buildtest.yml +++ b/.github/workflows/buildtest.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@v3 - name: Use Node.js 16.15 - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c + uses: actions/setup-node@v3 with: node-version: 16.15 cache: 'npm' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0fd5ec3..75bd962 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,9 +25,9 @@ jobs: pull-requests: write steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@v3 - - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c + - uses: actions/setup-node@v3 with: node-version: "16" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f13b4f..1139c4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,10 +24,10 @@ jobs: contents: read steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@v3 - name: Check if version has changed id: check-version - uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 + uses: actions/github-script@v6 with: script: | const version = '${{ inputs.version }}' || require('./lerna.json').version; @@ -65,9 +65,9 @@ jobs: PKG_VERSION: "" # will be set in the workflow steps: - - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab + - uses: actions/checkout@v3 - - uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c + - uses: actions/setup-node@v3 with: node-version: 16.x cache: "npm" @@ -80,7 +80,7 @@ jobs: - run: npm ci - name: Create release - uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 + uses: actions/github-script@v6 with: script: | const fs = require("fs");