From cd079539c645d03af9bd96db0bbb2bf869400542 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Sep 2022 00:29:22 +0000 Subject: [PATCH] fix(deps): bump actions/checkout from 2 to 3 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] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6578c26..7c14f9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout 🛎 - uses: actions/checkout@master + uses: actions/checkout@v3 - name: Setup node env 🏗 uses: actions/setup-node@v2.1.5 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 287e9ad..aa86c6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: create release on tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # This action generates changelog which then the release action consumes - name: Conventional Changelog Action