From f8bc9f20f9c3cfbc185807847cc89178c4d5e7f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 13:34:23 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32d36a3..5a38a1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Test fixtures live in LFS. lfs: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbf3e95..9344a44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Rust uses: actions-rs/toolchain@v1 @@ -141,10 +141,10 @@ jobs: tool: parse-changelog@0.5.1 - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Checkout Homebrew tap - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: abhinav/homebrew-tap token: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}