From 59f53103af2729fbd6a170a8211941f7687577a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Apr 2023 09:43:42 +0800 Subject: [PATCH] build(deps): bump actions/checkout from 3.5.0 to 3.5.1 (#819) Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.0 to 3.5.1. - [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.5.0...v3.5.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... 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/docs.yml | 4 ++-- .github/workflows/e2e-test.yml | 2 +- .github/workflows/goreleaser.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/proto2http.yaml | 2 +- .github/workflows/rebase.yml | 2 +- .github/workflows/unit-test.yml | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 54ba43e223..30c55100fd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.1 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5dac31fdf1..aaf1166d24 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: docs-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.0 + - uses: actions/checkout@v3.5.1 - name: Run markdown linter uses: nosborn/github-action-markdown-cli@v3.3.0 @@ -27,7 +27,7 @@ jobs: needs: docs-lint steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3.5.0 + - uses: actions/checkout@v3.5.1 # 首先生成拉取node文件 - name: Node install diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 9bfc1f3d5c..9af3bbe176 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Check out code into the Go module directory - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.1 - name: docker-compose run: docker-compose -f test/docker-compose.yaml up -d diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 97e17fafc5..d40cd9f238 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.1 with: fetch-depth: 0 - name: Set up Go diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0f3c359efc..f2ad45a69c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -30,7 +30,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.1 - name: golangci-lint if: runner.os != 'Windows' diff --git a/.github/workflows/proto2http.yaml b/.github/workflows/proto2http.yaml index ef7cfd27f7..6adcd1778f 100644 --- a/.github/workflows/proto2http.yaml +++ b/.github/workflows/proto2http.yaml @@ -17,7 +17,7 @@ jobs: go: ["1.19.x"] steps: - - uses: actions/checkout@v3.5.0 + - uses: actions/checkout@v3.5.1 - uses: actions/cache@v3 with: path: | diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index d7a87c14b4..e3c72ac7cd 100644 --- a/.github/workflows/rebase.yml +++ b/.github/workflows/rebase.yml @@ -8,7 +8,7 @@ jobs: if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.0 + - uses: actions/checkout@v3.5.1 with: fetch-depth: 0 - name: Automatic Rebase diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 361b79385a..25a7fdfe3f 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Check out code into the Go module directory - uses: actions/checkout@v3.5.0 + uses: actions/checkout@v3.5.1 - name: docker-compose run: docker-compose -f test/docker-compose.yaml up -d