From 9dbb661202ffed8e189179f10e3961c838f6721a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 23:39:20 +0000 Subject: [PATCH] chore(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/codeql-analysis.yml | 2 +- .github/workflows/go-fmt.yml | 4 ++-- .github/workflows/integration.yml | 4 ++-- .github/workflows/release.yml | 2 +- .github/workflows/unit.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0dd6831987..25ec061338 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/go-fmt.yml b/.github/workflows/go-fmt.yml index fa2b21e3a6..5b5b4c7869 100644 --- a/.github/workflows/go-fmt.yml +++ b/.github/workflows/go-fmt.yml @@ -10,7 +10,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 @@ -23,7 +23,7 @@ jobs: golang-ci: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go uses: actions/setup-go@v4 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index fb963ebe61..7e19301744 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -34,11 +34,11 @@ jobs: - name: pull_request actions/checkout if: github.event_name == 'pull_request' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: pull_request actions/checkout if: github.event_name == 'repository_dispatch' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: 'refs/pull/${{ github.event.client_payload.pull_request.number }}/merge' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c421845161..e32ff90f42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: changelog-types: ${{ steps.configure-changelog.outputs.result }} token: ${{ steps.generate_token.outputs.token }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # we need to fetch all history and tags # so we build the proper version with: diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 16d35e4cfb..858eff7846 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -12,7 +12,7 @@ jobs: - docs-check steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: go-version-file: ./go.mod