From a93bf5ef7334faaa9d4153827aa34d600b8fc46a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 15:23:08 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 3.0.2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0. - [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.0.2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/go.yml | 6 +++--- .github/workflows/goreleaser.yml | 2 +- .github/workflows/lint-go.yml | 2 +- .github/workflows/rebase.yml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 706dcc5dd8..e3c99e9a04 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.0.2 + uses: actions/checkout@v3.1.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index cc72bdac0c..5b76993f08 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -26,7 +26,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.1.0 - uses: actions/cache@v3 with: @@ -42,7 +42,7 @@ jobs: go env go get -v -t -d ./... - - uses: actions/checkout@v3.0.2 + - uses: actions/checkout@v3.1.0 - name: Build run: go build -v . @@ -63,7 +63,7 @@ jobs: id: go - name: Check out code into the Go module directory - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.1.0 - 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 7f605b301d..73818f8a73 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.0.2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: Set up Go 1.16 diff --git a/.github/workflows/lint-go.yml b/.github/workflows/lint-go.yml index e9c9e87b9e..78fbb23713 100644 --- a/.github/workflows/lint-go.yml +++ b/.github/workflows/lint-go.yml @@ -15,7 +15,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.2 + - uses: actions/checkout@v3.1.0 - name: golangci-lint uses: golangci/golangci-lint-action@v3.2.0 with: diff --git a/.github/workflows/rebase.yml b/.github/workflows/rebase.yml index ab4c756b53..f0641ff50f 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.0.2 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: Automatic Rebase