From 1fdcce69b698009403f5e9031709740613dcbf68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Nov 2023 10:41:29 +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] Signed-off-by: Bradley Jones --- .github/workflows/commit-linting.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- .github/workflows/snapshot.yaml | 2 +- .github/workflows/static-analysis.yaml | 2 +- .github/workflows/unit-test.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/commit-linting.yaml b/.github/workflows/commit-linting.yaml index af8a615..ff9fc59 100644 --- a/.github/workflows/commit-linting.yaml +++ b/.github/workflows/commit-linting.yaml @@ -5,7 +5,7 @@ jobs: commitlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v5 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 295f285..ea089da 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # we don't want to release commits that have been pushed and tagged, but not necessarily merged onto main - name: Ensure tagged commit is on main @@ -69,7 +69,7 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/snapshot.yaml b/.github/workflows/snapshot.yaml index a59aa83..208231d 100644 --- a/.github/workflows/snapshot.yaml +++ b/.github/workflows/snapshot.yaml @@ -18,7 +18,7 @@ jobs: with: go-version: ${{ env.GO_VERSION }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore bootstrap cache id: cache diff --git a/.github/workflows/static-analysis.yaml b/.github/workflows/static-analysis.yaml index 08f32f7..e3b392d 100644 --- a/.github/workflows/static-analysis.yaml +++ b/.github/workflows/static-analysis.yaml @@ -15,7 +15,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore bootstrap cache id: bootstrap-cache diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 93b05d7..976c81b 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -16,7 +16,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Restore bootstrap cache id: bootstrap-cache