chore(deps): Bump alpine from 3.15.4 to 3.16.2
Bumps alpine from 3.15.4 to 3.16.2.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
@yoheimuta I just noticed this failed.
The error:
Workflows triggered by Dependabot on the "push" event run with read-only access. Uploading Code Scanning results requires write access. To use Code Scanning with Dependabot, please ensure you are using the "pull_request" event for this workflow and avoid triggering on the "push" event for Dependabot branches. See https://docs.github.com/en/code-security/secure-coding/configuring-code-scanning#scanning-on-push for more information on how to configure these events.
is due to the new upload-sarif action.
Should we change the entire Go workflow to run only on pull_request?
Or do we split it into two workflows and leave Lint/Test/Build in go.yml running on push and pull_request while the trivy and hadolint move to a new workflow running on only pull_request?
@wwuck Thank you for the catch!
Since we shouldn't push commits to the main branch directly, it's enough to run only on pull_request.
Should we change the entire Go workflow to run only on pull_request?
So, I second this idea.
@yoheimuta fixed in https://github.com/yoheimuta/protolint/pull/274
Superseded by #296.