From d13abc4081598fef7e32f3d4882e7d998eeb29b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 19:37:15 +0000 Subject: [PATCH] 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/integration.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 647c971..27a3f99 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -42,7 +42,7 @@ jobs: # build: x86_64-windows # ext: .exe steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 continue-on-error: false with: @@ -62,7 +62,7 @@ jobs: name: "Cargo check/clippy" runs-on: self-hosted steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: components: clippy @@ -74,7 +74,7 @@ jobs: name: "Cargo format" runs-on: self-hosted steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 292a2e2..2864740 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: outputs: crate-version: ${{ steps.crate-version.outputs.CRATE_VERSION }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get tag id: "crate-version" @@ -69,7 +69,7 @@ jobs: build: x86_64-windows ext: .exe steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 continue-on-error: false