-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into cklin/diff-range-filtering
- Loading branch information
Showing
776 changed files
with
10,835 additions
and
5,538 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 'Publish Immutable Action Version' | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
packages: write | ||
|
||
steps: | ||
- name: Check release name | ||
id: check | ||
env: | ||
RELEASE_NAME: ${{ github.event.release.name }} | ||
run: | | ||
echo "Release name: ${{ github.event.release.name }}" | ||
if [[ $RELEASE_NAME == v* ]]; then | ||
echo "This is a CodeQL Action release. Create an Immutable Action" | ||
echo "is-action-release=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "This is a CodeQL Bundle release. Do not create an Immutable Action" | ||
echo "is-action-release=false" >> $GITHUB_OUTPUT | ||
fi | ||
- name: Checking out | ||
if: steps.check.outputs.is-action-release == 'true' | ||
uses: actions/checkout@v4 | ||
- name: Publish | ||
if: steps.check.outputs.is-action-release == 'true' | ||
id: publish | ||
uses: actions/[email protected] |
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: 'CodeQL: Stub' | ||
description: "Stub: Don't use this action directly. Read [the documentation](https://docs.github.com/en/code-security/code-scanning/introduction-to-code-scanning/about-code-scanning-with-codeql) instead." | ||
author: 'GitHub' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: 'Stub' | ||
run: | | ||
echo 'This is a stub. Read [the documentation](https://docs.github.com/en/code-security/code-scanning/introduction-to-code-scanning/about-code-scanning-with-codeql) instead.' | ||
exit 1 | ||
shell: bash |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.