From 81148369893601784d243268f93a4429744fe787 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 21:08:41 +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/build.yml | 4 ++-- .github/workflows/cache.yml | 2 +- .github/workflows/golangci-lint.yaml | 2 +- .github/workflows/nightly.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38f192f8067..f3a7db9bf32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: variants: ${{ steps.get-variants.outputs.variants }} aarch-enemies: ${{ steps.get-variants.outputs.aarch-enemies }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/list-variants id: get-variants @@ -56,7 +56,7 @@ jobs: delay=$((1 + $RANDOM % 32)) echo "Waiting ${delay} seconds before execution" sleep $delay - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Preflight step to set up the runner uses: ./.github/actions/setup-node - if: contains(matrix.variant, 'nvidia') diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 2c7399cc3f6..fd93f220125 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -21,7 +21,7 @@ jobs: labels: bottlerocket_ubuntu-latest_16-core continue-on-error: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Preflight step to set up the runner uses: ./.github/actions/setup-node with: diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index b1b1f4fc747..b1e5a0b5f7f 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -17,7 +17,7 @@ jobs: - uses: actions/setup-go@v3 with: go-version: 1.19 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: lint-host-ctr uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 279a61c13cf..31c13bff307 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -28,7 +28,7 @@ jobs: variants: ${{ steps.get-variants.outputs.variants }} aarch-enemies: ${{ steps.get-variants.outputs.aarch-enemies }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/list-variants id: get-variants @@ -46,7 +46,7 @@ jobs: fail-fast: false name: "Build ${{ matrix.variant }}-${{ matrix.arch }}" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Preflight step to set up the runner uses: ./.github/actions/setup-node - if: contains(matrix.variant, 'nvidia')