From 1069d23d1d675a51264dfd323fd8d01dca93d9f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 07:18:31 +0000 Subject: [PATCH] ci: 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/ci-lint.yml | 4 ++-- .github/workflows/ci-reproducibility.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/release-dev.yml | 2 +- .github/workflows/release.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index dee0737ca0e..7ed608b1b5b 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Check out pull request's HEAD commit instead of the merge commit to # prevent gitlint from failing due to too long commit message titles, @@ -93,7 +93,7 @@ jobs: # Always run this step so that all linting errors can be seen at once. if: always() - name: Ensure a clean code checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: clean: true if: always() diff --git a/.github/workflows/ci-reproducibility.yml b/.github/workflows/ci-reproducibility.yml index f75c4e94463..38b2e436100 100644 --- a/.github/workflows/ci-reproducibility.yml +++ b/.github/workflows/ci-reproducibility.yml @@ -31,7 +31,7 @@ jobs: build_number: [1, 2] steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # NOTE: We make a git checkout to a unique directory for each build to # catch reproducibility issues with code in different local paths. diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0a2194ea88f..cc0be59f05e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Check out pull request's HEAD commit instead of the merge commit. ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 4fcad9272f7..c1a89e191e2 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Fetch all history as the recommended way to fetch all tags and # branches of the project. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d042cc460f3..976326168b8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Fetch all history as the recommended way to fetch all tags and # branches of the project.