From df175d7f0fd8b9db26120d192b0eaa1afa72b607 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Oct 2023 16:34:22 +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/bazel.yml | 2 +- .github/workflows/lint.yml | 4 ++-- .github/workflows/sast.yml | 2 +- .github/workflows/sca.yml | 2 +- .github/workflows/tests.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 6c6a4c3c..5b97f7bc 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: bazel build :atc_router --verbose_failures diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 470202b6..4b3f642d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Optional step to run on only changed files - name: Get changed files @@ -58,7 +58,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Optional step to run on only changed files - name: Get changed files diff --git a/.github/workflows/sast.yml b/.github/workflows/sast.yml index 3c2500aa..ee14700a 100644 --- a/.github/workflows/sast.yml +++ b/.github/workflows/sast.yml @@ -23,7 +23,7 @@ jobs: if: (github.actor != 'dependabot[bot]') steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Kong/public-shared-actions/security-actions/semgrep@v1 with: additional_config: '--config p/rust' diff --git a/.github/workflows/sca.yml b/.github/workflows/sca.yml index bdf05516..948170c0 100644 --- a/.github/workflows/sca.yml +++ b/.github/workflows/sca.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Rust SCA uses: Kong/public-shared-actions/security-actions/scan-rust@v1 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 00cbfe2c..438f8bbe 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: NGX_BUILD_CC: gcc steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: toolchain: stable