From 7f81d4c51f90532cc523f7188650a07f26b0c97b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 05:48:25 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- .github/workflows/test-and-build.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d980bc..5f206d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: outputs: earlybird_next_version: ${{ steps.getversion.outputs.earlybird_next_version }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@v2 @@ -33,7 +33,7 @@ jobs: with: go-version: ^1.18 - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build project run: ./build.sh ${{ needs.get_next_version.outputs.earlybird_next_version }} - name: Upload artifacts @@ -49,7 +49,7 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN}} - name: Download earlybird artifacts diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index a7a35c6..498e76b 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -17,6 +17,6 @@ jobs: with: go-version: ^1.18 - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build and Test run: ./build.sh