From 4db31aba3400677aae8f001b322b85f9f52d4fa2 Mon Sep 17 00:00:00 2001 From: Barrett LaFrance Date: Tue, 27 Aug 2024 09:33:07 -0500 Subject: [PATCH] chore: update --- .github/workflows/semrel-rc.yml | 44 ++++++++++++++++----------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/semrel-rc.yml b/.github/workflows/semrel-rc.yml index ee126cad1..4423de1b1 100644 --- a/.github/workflows/semrel-rc.yml +++ b/.github/workflows/semrel-rc.yml @@ -23,28 +23,28 @@ jobs: check: name: Check for Releasable Updates runs-on: ubuntu-latest - permissions: - contents: read - steps: - - uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 - with: - egress-policy: audit - - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 - with: - node-version: 20 - registry-url: "https://registry.npmjs.org" - cache: npm - - - name: check - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - npm ci - npm run sem-rel -- --dry-run | grep --invert-match --quiet \ - "There are no relevant changes, so no new version is released." + permissions: + contents: read + steps: + - uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 + with: + egress-policy: audit + + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + + - uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3 + with: + node-version: 20 + registry-url: "https://registry.npmjs.org" + cache: npm + + - name: check + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + npm ci + npm run sem-rel -- --dry-run | grep --invert-match --quiet \ + "There are no relevant changes, so no new version is released." build: needs: [check]