From f4de497a8cfa2ad1cd6a495c223e87b1b4eefc10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 17:47:19 +0900 Subject: [PATCH] feat(actions): bump actions/checkout from 2 to 3 (#1201) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/commitlint.yml | 2 +- .github/workflows/npm-audit-fix.yml | 2 +- .github/workflows/npm-diff.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- test/__snapshots__/init.test.js.snap | 8 ++++---- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 6a7f1986..ae9c4566 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -10,7 +10,7 @@ jobs: commitlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v4 diff --git a/.github/workflows/npm-audit-fix.yml b/.github/workflows/npm-audit-fix.yml index 2759ba86..1c04429d 100644 --- a/.github/workflows/npm-audit-fix.yml +++ b/.github/workflows/npm-audit-fix.yml @@ -9,7 +9,7 @@ jobs: npm-audit-fix: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ybiquitous/npm-audit-fix-action@v3 with: github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} diff --git a/.github/workflows/npm-diff.yml b/.github/workflows/npm-diff.yml index c6c36184..7f79c54f 100644 --- a/.github/workflows/npm-diff.yml +++ b/.github/workflows/npm-diff.yml @@ -9,5 +9,5 @@ jobs: if: ${{ contains(github.head_ref, 'dependabot/npm_and_yarn/') }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ybiquitous/npm-diff-action@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e426521..83259713 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: "lts/*" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 547e33cf..5bdc5f1b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: matrix: node-version: ["12", "14", "16"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} diff --git a/test/__snapshots__/init.test.js.snap b/test/__snapshots__/init.test.js.snap index c02f2040..b95e9a23 100644 --- a/test/__snapshots__/init.test.js.snap +++ b/test/__snapshots__/init.test.js.snap @@ -168,7 +168,7 @@ jobs: commitlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v4 @@ -189,7 +189,7 @@ jobs: npm-audit-fix: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ybiquitous/npm-audit-fix-action@v3 with: github_token: \${{ secrets.PERSONAL_ACCESS_TOKEN }} @@ -207,7 +207,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: \\"lts/*\\" @@ -242,7 +242,7 @@ jobs: matrix: node-version: [\\"12\\", \\"14\\", \\"16\\"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: \${{ matrix.node-version }}