forked from gabriel-vasile/mimetype
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request gabriel-vasile#505 from gabriel-vasile/dependabot/…
…github_actions/github-actions-0f96fe9c1f Bump the github-actions group with 3 updates
- Loading branch information
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,13 @@ jobs: | |
|
||
steps: | ||
- name: Check out code | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/[email protected].5 | ||
uses: github/codeql-action/[email protected].10 | ||
with: | ||
languages: go | ||
queries: security-and-quality | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/[email protected].5 | ||
uses: github/codeql-action/[email protected].10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
with: | ||
go-version: "1.18.x" | ||
- name: Checkout code | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
- name: Run linters | ||
uses: golangci/[email protected] | ||
with: | ||
|
@@ -35,7 +35,7 @@ jobs: | |
with: | ||
go-version: "1.18.x" | ||
- name: Checkout code | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
- 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/[email protected].1 | ||
- uses: actions/[email protected].2 | ||
- name: Install Go | ||
if: success() | ||
uses: actions/[email protected] | ||
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.3.0 | ||
with: | ||
files: ./coverage.out |