From 61065a653c13e23a23fa25df85545eb5246529b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:25:24 +0200 Subject: [PATCH] Bump actions/checkout from 3.0.2 to 3.3.0 (#357) Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 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.0.2...v3.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codeql.yml | 2 +- .github/workflows/go.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b7cc283d..e3e96bc0 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Initialize CodeQL uses: github/codeql-action/init@v2.1.22 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 9c3b8e8b..54a3de66 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -17,7 +17,7 @@ jobs: with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Run linters uses: golangci/golangci-lint-action@v3.2.0 with: @@ -36,7 +36,7 @@ jobs: with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - run: go test -race ./... - run: go test -fuzz=. -fuzztime=30s - run: go test -fuzz=Plain -fuzztime=30s ./internal/charset @@ -46,7 +46,7 @@ jobs: coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.0.2 + - uses: actions/checkout@v3.3.0 - name: Install Go if: success() uses: actions/setup-go@v3.5.0