From 7c778dfcd58829b8e0c2177fabd95ba1b82df322 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Mar 2022 14:12:32 +0000 Subject: [PATCH] chore: update actions/checkout action to v3 --- .github/workflows/next.yml | 4 ++-- .github/workflows/pr.yml | 2 +- .github/workflows/stable.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index 29040eb..298d581 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -12,7 +12,7 @@ jobs: node-version: [10.x, 12.x, 14.x] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: @@ -25,7 +25,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get all git commits and tags run: git fetch --prune --unshallow --tags - uses: actions/setup-node@v1 diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0cc2f36..cefa02d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -12,7 +12,7 @@ jobs: node-version: [10.x, 12.x, 14.x] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: diff --git a/.github/workflows/stable.yml b/.github/workflows/stable.yml index a5da7ed..cbbd1f7 100644 --- a/.github/workflows/stable.yml +++ b/.github/workflows/stable.yml @@ -12,7 +12,7 @@ jobs: node-version: [10.x, 12.x, 14.x] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: @@ -25,7 +25,7 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get all git commits and tags run: git fetch --prune --unshallow --tags - uses: actions/setup-node@v1