From bd8d76c711bb5b347279ef942bc69a0d7b471da9 Mon Sep 17 00:00:00 2001 From: "Geoffrey.C" Date: Sun, 11 Apr 2021 20:21:15 +0800 Subject: [PATCH] @dependabot build(deps): use major version v2 for actions/setup-node MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michaƫl De Boey --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4393b44..25489bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Setup Node.js with GitHub Package Registry - uses: actions/setup-node@v2.1.5 + uses: actions/setup-node@v2 with: node-version: 12 registry-url: 'https://npm.pkg.github.com' @@ -49,4 +49,3 @@ jobs: run: "git push https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:refs/heads/v${{steps.semantic.outputs.new_release_major_version}}" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -