From 5bee7fedf3da558d9bceb02ed2f3f4970a41d9d1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Mar 2023 04:08:07 +0000 Subject: [PATCH] Bump actions/checkout from 3.4.0 to 3.5.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.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.4.0...v3.5.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... 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 52deb40..db7653f 100644 --- a/.github/workflows/gotidy.yml +++ b/.github/workflows/gotidy.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 - name: Set up Go uses: actions/setup-go@v4 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 124e28e..f0583f0 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.4.0 + uses: actions/checkout@v3.5.0 - name: Run Golint uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 572ec0c..72494d2 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.4.0 + uses: actions/checkout@v3.5.0 - name: Run Gosec uses: securego/gosec@master with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a8d06cf..6a9a1d1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,6 +38,6 @@ jobs: restore-keys: | ${{ runner.os }}-go-${{ matrix.go-version }}- - name: Fetch Repository - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v3.5.0 - name: Run Test run: go test ./... -v -race