From bb15ffa7c109ffc5051d886251ca6d6021e3adc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 22:57:16 +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] --- .changelog/460.internal.md | 1 + .github/workflows/ci-dependabot.yml | 2 +- .github/workflows/ci-lint.yml | 4 ++-- .github/workflows/ci-tests.yaml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/release.yml | 2 +- 6 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 .changelog/460.internal.md diff --git a/.changelog/460.internal.md b/.changelog/460.internal.md new file mode 100644 index 00000000..101b31a8 --- /dev/null +++ b/.changelog/460.internal.md @@ -0,0 +1 @@ +ci: bump actions/checkout from 3 to 4 diff --git a/.github/workflows/ci-dependabot.yml b/.github/workflows/ci-dependabot.yml index d0358309..abb380a4 100644 --- a/.github/workflows/ci-dependabot.yml +++ b/.github/workflows/ci-dependabot.yml @@ -21,7 +21,7 @@ jobs: contents: write steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Needed for correct git commit --amend. fetch-depth: 0 diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index f69e5725..b8c0ebf4 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -22,7 +22,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, @@ -86,7 +86,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-tests.yaml b/.github/workflows/ci-tests.yaml index a064358f..31019db7 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Go 1.19 uses: actions/setup-go@v4 with: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0ae8bcdd..27f42cd0 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 - name: Determine branch and tag name id: branch_tag diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b45c6cf7..2ae8d5a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest 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.