From cb908a5e438f06c0b31afb4f14408b42a7375632 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 22:50:38 +0000 Subject: [PATCH] build(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/doc.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/go.yml | 4 ++-- .github/workflows/golangci-lint.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index ed27bcbb8..13b5de4bb 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 27a897830..80f82e203 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest container: ghcr.io/rsteube/carapace steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/cache@v3 with: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 84e6b8142..b039f3ccc 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -13,7 +13,7 @@ jobs: permissions: packages: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Login to GitHub Container Registry uses: docker/login-action@v2 with: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2a7f14267..b64a6050c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -11,11 +11,11 @@ jobs: container: ghcr.io/rsteube/carapace steps: - name: shallow clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: "!startsWith(github.ref, 'refs/tags/')" - name: deep clone - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: startsWith(github.ref, 'refs/tags/') with: fetch-depth: 0 diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index b64332bab..024efc46f 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -17,6 +17,6 @@ jobs: with: go-version: '1.17' cache: false - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 \ No newline at end of file