From 8e022658e82e679d348a2c76acfa69b16306454d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Jan 2023 03:13:29 +0000 Subject: [PATCH] Bump actions/checkout from 3.2.0 to 3.3.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.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.2.0...v3.3.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 7e13123..da3b1f4 100644 --- a/.github/workflows/gotidy.yml +++ b/.github/workflows/gotidy.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3.2.0 + uses: actions/checkout@v3.3.0 - name: Set up Go uses: actions/setup-go@v3 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index e874582..e084ca8 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.2.0 + uses: actions/checkout@v3.3.0 - name: Run Golint uses: reviewdog/action-golangci-lint@v2 with: diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index d95f93a..230da05 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.2.0 + uses: actions/checkout@v3.3.0 - name: Run Gosec uses: securego/gosec@master with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f134790..5c85912 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.2.0 + uses: actions/checkout@v3.3.0 - name: Run Test run: go test ./... -v -race