8000 Log warning if SIP is disabled and CLI version is < 2.15.1 by angelapwen · Pull Request #2261 · github/codeql-action · GitHub
[go: up one dir, main page]

Skip to content

Log warning if SIP is disabled and CLI version is < 2.15.1 #2261

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

Merged
merged 14 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Explicitly use setup-go for all tests
  • Loading branch information
angelapwen committed Apr 25, 2024
commit 7a018e589d1421f3e1c75e47a705a42d61b7263f
3 changes: 3 additions & 0 deletions .github/workflows/__go-custom-queries.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .github/workflows/__multi-language-autodetect.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .github/workflows/__scaling-reserved-ram.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions pr-checks/checks/go-custom-queries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ description: "Checks that Go works in conjunction with a config file specifying
env:
DOTNET_GENERATE_ASPNET_CERTIFICATE: "false"
steps:
- uses: actions/setup-go@v5
with:
go-version: ">=1.21.0"
- uses: ./../action/init
with:
languages: go
Expand Down
4 changes: 4 additions & 0 deletions pr-checks/checks/multi-language-autodetect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: "Multi-language repository"
description: "An end-to-end integration test of a multi-language repository using automatic language detection"
operatingSystems: ["ubuntu", "macos"]
steps:
- uses: actions/setup-go@v5
with:
go-version: ">=1.21.0"

- uses: ./../action/init
id: init
with:
Expand Down
4 changes: 4 additions & 0 deletions pr-checks/checks/scaling-reserved-ram.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ operatingSystems: ["ubuntu", "macos"]
env:
CODEQL_ACTION_SCALING_RESERVED_RAM: true
steps:
- uses: actions/setup-go@v5
with:
go-version: ">=1.21.0"

- uses: ./../action/init
id: init
with:
Expand Down
0