Skip to content

Commit

Permalink
Bump the github-actions group with 3 updates
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action) and [codecov/codecov-action](https://github.com/codecov/codecov-action).


Updates `actions/checkout` from 4.1.1 to 4.1.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.1...v4.1.2)

Updates `github/codeql-action` from 3.24.5 to 3.24.10
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@v3.24.5...v3.24.10)

Updates `codecov/codecov-action` from 4.0.2 to 4.2.0
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v4.0.2...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 8, 2024
1 parent e146169 commit 22a8c32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2

- name: Initialize CodeQL
uses: github/codeql-action/init@v3.24.5
uses: github/codeql-action/init@v3.24.10
with:
languages: go
queries: security-and-quality

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3.24.5
uses: github/codeql-action/analyze@v3.24.10
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
go-version: "1.18.x"
- name: Checkout code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
- name: Run linters
uses: golangci/golangci-lint-action@v4.0.0
with:
Expand All @@ -35,7 +35,7 @@ jobs:
with:
go-version: "1.18.x"
- name: Checkout code
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2
- run: go test -race ./...
- run: go test -fuzz=. -fuzztime=30s
- run: go test -fuzz=Plain -fuzztime=30s ./internal/charset
Expand All @@ -45,14 +45,14 @@ jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.2
- name: Install Go
if: success()
uses: actions/setup-go@v5.0.0
with:
go-version: "1.18.x"
- name: Generate coverage
run: go test -race -covermode=atomic -coverprofile=coverage.out
- uses: codecov/codecov-action@v4.0.2
- uses: codecov/codecov-action@v4.2.0
with:
files: ./coverage.out

0 comments on commit 22a8c32

Please sign in to comment.