From b30df17fc2e6b8673393449bbf1f13d10a3e9479 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 15:52:12 +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/ci.yaml | 2 +- .github/workflows/envoy-sync.yaml | 4 ++-- .github/workflows/golangci-lint.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b5c2b71fe4..9cddfa1954 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,6 +10,6 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build and test run: make docker_tests \ No newline at end of file diff --git a/.github/workflows/envoy-sync.yaml b/.github/workflows/envoy-sync.yaml index 18dc4b70cd..561848d540 100644 --- a/.github/workflows/envoy-sync.yaml +++ b/.github/workflows/envoy-sync.yaml @@ -29,7 +29,7 @@ jobs: # Checkout the repo - name: 'Checkout Repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: main fetch-depth: 0 @@ -37,7 +37,7 @@ jobs: # Checkout the Envoy repo - name: 'Checkout Repository' - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: envoyproxy/envoy ref: main diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index 6bd5cf2008..012518efc9 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -7,7 +7,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: