From 64eba18471653aa5d4b58bc65b4cf73f3b2c541c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Oct 2023 18:34:05 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 1 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 1 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/v1...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/atlantis-base.yml | 2 +- .github/workflows/atlantis-image.yml | 2 +- .github/workflows/ci-link-checker-image.yml | 2 +- .github/workflows/lint.yml | 6 +++--- .github/workflows/test.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/atlantis-base.yml b/.github/workflows/atlantis-base.yml index cece12ec7a..48e15f8abe 100644 --- a/.github/workflows/atlantis-base.yml +++ b/.github/workflows/atlantis-base.yml @@ -16,7 +16,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Login to Packages Container registry uses: docker/login-action@v1 with: diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index 7340fd26f2..a2ff25ca45 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -13,7 +13,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-go@v2 with: go-version: 1.16 diff --git a/.github/workflows/ci-link-checker-image.yml b/.github/workflows/ci-link-checker-image.yml index d435dc24e2..7ad0f49330 100644 --- a/.github/workflows/ci-link-checker-image.yml +++ b/.github/workflows/ci-link-checker-image.yml @@ -16,7 +16,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Login to Packages Container registry uses: docker/login-action@v1 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2cf420a1ef..7e7fa04402 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: name: runner / golangci-lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: golangci-lint uses: reviewdog/action-golangci-lint@v2 with: @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: golint uses: reviewdog/action-golangci-lint@v2 with: @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code into the Go module directory - uses: actions/checkout@v1 + uses: actions/checkout@v4 - name: errcheck uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 963bbabdb1..af72edf3c6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,5 +9,5 @@ jobs: # user in image needs write access to do anything - name: setup run: sudo chmod -R 777 $GITHUB_WORKSPACE /github /__w/_temp - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: make test-all \ No newline at end of file