From 2e0460a1fdafbbb54719b6e36ba191d456f80219 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:00:01 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action), [actions/setup-go](https://github.com/actions/setup-go) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `actions/checkout` from 3.5.3 to 4.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.5.3...v4.1.0) Updates `github/codeql-action` from 2.20.4 to 2.22.2 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2.20.4...v2.22.2) Updates `actions/setup-go` from 4.0.1 to 4.1.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4.0.1...v4.1.0) Updates `golangci/golangci-lint-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.6.0...v3.7.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 6 +++--- .github/workflows/go.yml | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index db20c5cd..c0af472e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,13 +20,13 @@ jobs: steps: - name: Check out code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.1.0 - name: Initialize CodeQL - uses: github/codeql-action/init@v2.20.4 + uses: github/codeql-action/init@v2.22.2 with: languages: go queries: security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2.20.4 + uses: github/codeql-action/analyze@v2.22.2 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 58d25380..a53df03f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Install Go - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v4.1.0 with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.1.0 - name: Run linters - uses: golangci/golangci-lint-action@v3.6.0 + uses: golangci/golangci-lint-action@v3.7.0 with: version: "v1.45.2" @@ -31,11 +31,11 @@ jobs: steps: - name: Install Go if: success() - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v4.1.0 with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4.1.0 - run: go test -race ./... - run: go test -fuzz=. -fuzztime=30s - run: go test -fuzz=Plain -fuzztime=30s ./internal/charset @@ -45,10 +45,10 @@ jobs: coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.5.3 + - uses: actions/checkout@v4.1.0 - name: Install Go if: success() - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v4.1.0 with: go-version: "1.18.x" - name: Generate coverage