From c4337316f55373cf1dcc79af87c66070dc506cc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Apr 2023 04:02:12 +0000 Subject: [PATCH] Bump actions/checkout from 3.5.1 to 3.5.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.1 to 3.5.2. - [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.1...v3.5.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/gotidy.yml | 2 +- .github/workflows/linter.yml | 2 +- .github/workflows/security.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gotidy.yml b/.github/workflows/gotidy.yml index d3b27a3..e5e7ae5 100644 --- a/.github/workflows/gotidy.yml +++ b/.github/workflows/gotidy.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Set up Go uses: actions/setup-go@v4 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 2a80320..d170d08 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Golint uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index e9fa1c1..d68b876 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Gosec uses: securego/gosec@master with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6478999..ca10d5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v3.5.1 + uses: actions/checkout@v3.5.2 - name: Run Test run: go test ./... -v -race