From 6bd94273db12f603ad60e366d582bcbe3f68fa0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 11:47:24 +0000 Subject: [PATCH] Bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | Update | | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | 3.3.0 to 3.5.3 | | [github/codeql-action](https://github.com/github/codeql-action) | 2.2.5 to 2.20.4 | | [actions/setup-go](https://github.com/actions/setup-go) | 3.5.0 to 4.0.1 | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | 3.4.0 to 3.6.0 | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | 3.1.1 to 3.1.4 | Updates `actions/checkout` from 3.3.0 to 3.5.3 - [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.3.0...v3.5.3) Updates `github/codeql-action` from 2.2.5 to 2.20.4 - [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.2.5...v2.20.4) Updates `actions/setup-go` from 3.5.0 to 4.0.1 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3.5.0...v4.0.1) Updates `golangci/golangci-lint-action` from 3.4.0 to 3.6.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3.4.0...v3.6.0) Updates `codecov/codecov-action` from 3.1.1 to 3.1.4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v3.1.1...v3.1.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor 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-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 6 +++--- .github/workflows/go.yml | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 38710d07..db20c5cd 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.3.0 + uses: actions/checkout@v3.5.3 - name: Initialize CodeQL - uses: github/codeql-action/init@v2.2.5 + uses: github/codeql-action/init@v2.20.4 with: languages: go queries: security-and-quality - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2.2.5 + uses: github/codeql-action/analyze@v2.20.4 diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1f0a5f33..58d25380 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@v3.5.0 + uses: actions/setup-go@v4.0.1 with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 - name: Run linters - uses: golangci/golangci-lint-action@v3.4.0 + uses: golangci/golangci-lint-action@v3.6.0 with: version: "v1.45.2" @@ -31,11 +31,11 @@ jobs: steps: - name: Install Go if: success() - uses: actions/setup-go@v3.5.0 + uses: actions/setup-go@v4.0.1 with: go-version: "1.18.x" - name: Checkout code - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v3.5.3 - run: go test -race ./... - run: go test -fuzz=. -fuzztime=30s - run: go test -fuzz=Plain -fuzztime=30s ./internal/charset @@ -45,14 +45,14 @@ jobs: coverage: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v3.5.3 - name: Install Go if: success() - uses: actions/setup-go@v3.5.0 + uses: actions/setup-go@v4.0.1 with: go-version: "1.18.x" - name: Generate coverage run: go test -race -covermode=atomic -coverprofile=coverage.out - - uses: codecov/codecov-action@v3.1.1 + - uses: codecov/codecov-action@v3.1.4 with: files: ./coverage.out