-
Notifications
You must be signed in to change notification settings - Fork 2
Unpin CodeQL pack dependencies by removing committed lock files #45
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
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
123fba6
Initial plan
Copilot efac579
Remove pinned codeql-pack.lock.yml files and ignore future ones
Copilot 80e9f62
Add install script, ${workspace} refs, bump to v0.0.2
data-douser b6ae257
Fixes for prompt tidy/lint
data-douser cb920ce
Merge branch 'main' into copilot/update-packs-to-latest-versions
data-douser 90bbcaf
Fixes for install-codeql-packs.sh
data-douser 1786021
Merge branch 'main' into copilot/update-packs-to-latest-versions
data-douser 937b711
Update copilot-setup-steps workflow "on:{push,pull_request}paths"
data-douser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-actions-custom-src | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| library: false | ||
| dependencies: | ||
| codeql/actions-all: "*" |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-actions-custom-test | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| dependencies: | ||
| languages-actions-custom-src: "*" | ||
| languages-actions-custom-src: ${workspace} | ||
| extractor: actions |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-actions-tools-src | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| library: false | ||
| dependencies: | ||
| codeql/actions-all: "*" |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| name: languages-actions-tools-test | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| dependencies: | ||
| # This test pack does not actually depend upon `codeql/actions-queries`, | ||
| # but we declare the dependency to ensure that the queries from the | ||
| # query pack are downloaded and available locally. | ||
| codeql/actions-queries: "*" | ||
| languages-actions-tools-src: "*" | ||
| languages-actions-tools-src: ${workspace} | ||
| extractor: actions |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-cpp-custom-src | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| library: false | ||
| dependencies: | ||
| codeql/cpp-all: "*" |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-cpp-custom-test | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| dependencies: | ||
| languages-cpp-custom-src: '*' | ||
| languages-cpp-custom-src: ${workspace} | ||
| extractor: cpp |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: languages-cpp-tools-src | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| library: false | ||
| dependencies: | ||
| codeql/cpp-all: "*" |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,9 +1,9 @@ | ||
| name: languages-cpp-tools-test | ||
| version: 0.0.1 | ||
| version: 0.0.2 | ||
| dependencies: | ||
| # This test pack does not actually depend upon `codeql/cpp-queries`, | ||
| # but we declare the dependency to ensure that the queries from the | ||
| # query pack are downloaded and available locally. | ||
| codeql/cpp-queries: "*" | ||
| languages-cpp-tools-src: '*' | ||
| languages-cpp-tools-src: ${workspace} | ||
| extractor: cpp |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.