Skip to content
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

Allow manual runs of the security check #233

Merged
merged 2 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# We don't scan documentation-only commits.
on: # yamllint disable-line rule:truthy
workflow_dispatch: # trigger ad-hoc runs of this action

Check warning on line 6 in .github/workflows/security.yml

View workflow job for this annotation

GitHub Actions / lint

6:22 [comments] too few spaces before comment
push: # non-tagged pushes to master
branches:
- master
Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This repo uses semantic versions. Please keep this in mind when choosing version

Before you start a release, make sure all dependencies are up-to-date, or are documented why not.
Pay special attention to the [security workflow](.github/workflows/security.yml), which should
run clean.
run clean. You can manually run the Action to check the release branch is up-to-date.

1. **Alert others you are releasing**

Expand Down
3 changes: 2 additions & 1 deletion build-bin/configure_lint
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/sh -ue

# Attempt to install markdown-link-check if absent
markdown-link-check -V || npm install -g markdown-link-check
# Pinned until https://github.com/tcort/markdown-link-check/issues/369
markdown-link-check -V || npm install -g markdown-link-check@3.12.2

# Attempt to install yamllint if absent
yamllint || pip install --user yamllint