From ac5b5124c12ec92cd7e3db0663973e7fe660cd01 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 May 2022 23:10:28 +0800 Subject: [PATCH] build(deps): bump actions/checkout from 2 to 3 (#2046) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/gitee-sync.yml | 2 +- .github/workflows/go.yml | 2 +- .github/workflows/lint.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a005ccabd..a100e19c4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/gitee-sync.yml b/.github/workflows/gitee-sync.yml index debfbb843..843b2819c 100644 --- a/.github/workflows/gitee-sync.yml +++ b/.github/workflows/gitee-sync.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v1 + uses: actions/checkout@v3 - name: Mirror Github to Gitee uses: Yikun/hub-mirror-action@v1.2 with: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c1cf783e4..634f80f69 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -41,7 +41,7 @@ jobs: - 8090:8090 - 8091:8091 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Go uses: actions/setup-go@v2 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a5c3a0b29..e06c771f2 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,7 +15,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: Checkout Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - id: set-matrix run: ./hack/resolve-modules.sh @@ -27,7 +27,7 @@ jobs: strategy: matrix: ${{ fromJson(needs.resolve-modules.outputs.matrix) }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Lint uses: golangci/golangci-lint-action@v2 with: