-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update workflows #1547
Update workflows #1547
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |||||
lint: | ||||||
runs-on: ubuntu-latest | ||||||
steps: | ||||||
- uses: actions/checkout@v3 | ||||||
- uses: actions/checkout@v4 | ||||||
- uses: dominikh/staticcheck-action@v1.3.0 | ||||||
with: | ||||||
version: "2023.1.3" | ||||||
version: "2023.1.6" | ||||||
|
||||||
list: | ||||||
runs-on: ubuntu-latest | ||||||
|
@@ -73,11 +73,11 @@ jobs: | |||||
fail-fast: false | ||||||
matrix: ${{ fromJSON(needs.list.outputs.matrix) }} | ||||||
steps: | ||||||
- uses: actions/checkout@v3 | ||||||
- uses: actions/setup-go@v4 | ||||||
- uses: actions/checkout@v4 | ||||||
- uses: actions/setup-go@v5 | ||||||
with: | ||||||
go-version: ${{ matrix.go }} | ||||||
- uses: shogo82148/actions-setup-mysql@v1.21.0 | ||||||
- uses: shogo82148/actions-setup-mysql@v1 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The version change for - shogo82148/actions-setup-mysql@v1.21.0
+ shogo82148/actions-setup-mysql@v1 Verify the correct version number for Committable suggestion
Suggested change
|
||||||
with: | ||||||
mysql-version: ${{ matrix.mysql }} | ||||||
user: ${{ env.MYSQL_TEST_USER }} | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version update for
dominikh/staticcheck-action
to "2023.1.6" seems to be a typo. The action version format does not match the expected semantic versioning format used by GitHub Actions.Correct the version format to match GitHub Actions' expected semantic versioning.
Committable suggestion