From 4a60488adb9e51c74d71daa636a99298a431b0eb Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Thu, 15 Oct 2020 22:32:27 +0200 Subject: [PATCH] chore(deps): update github action runners - Update actions/checkout to 2.3.3 - Update wagoid/commitlint-github-action to 1.8.0 - Update actions/setup-node to 1.4.4 - Update actions/create-release to 1.1.4 --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 469b0350..70ea5137 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,11 +26,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.1.0 + uses: actions/checkout@v2.3.3 with: fetch-depth: 0 - name: Lint commit messages - uses: wagoid/commitlint-github-action@v1.6.0 + uses: wagoid/commitlint-github-action@v1.8.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -39,9 +39,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.1.0 + uses: actions/checkout@v2.3.3 - name: Setup node - uses: actions/setup-node@v1.4.1 + uses: actions/setup-node@v1.4.4 with: node-version: '12.x' - name: Install project @@ -58,7 +58,7 @@ jobs: configurationFile: [example/renovate-config.js, example/renovate.json] steps: - name: Checkout - uses: actions/checkout@v2.1.0 + uses: actions/checkout@v2.3.3 - name: Install project run: npm ci - name: Build @@ -84,7 +84,7 @@ jobs: && github.ref == 'refs/heads/master' steps: - name: Checkout - uses: actions/checkout@v2.1.0 + uses: actions/checkout@v2.3.3 with: fetch-depth: 0 ref: 'release' @@ -98,7 +98,7 @@ jobs: run: | git merge -m 'chore(release): merge master (${{ github.sha }})' ${{ github.sha }} - name: Setup node - uses: actions/setup-node@v1.4.1 + uses: actions/setup-node@v1.4.4 with: node-version: '12.x' - name: Install project @@ -119,7 +119,7 @@ jobs: - name: Publish release run: git push --follow-tags - name: Publish GitHub release - uses: actions/create-release@v1.0.1 + uses: actions/create-release@v1.1.4 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: