Skip to content

Commit 4a19b51

Browse files
committed
Merge branch 'main' into dbartol/remove-actions-extractor
2 parents c7c9a57 + dab8a02 commit 4a19b51

File tree

6,279 files changed

+463161
-653313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,279 files changed

+463161
-653313
lines changed

.github/workflows/__rubocop-multi-language.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/post-release-mergeback.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
--draft
169169
170170
- name: Generate token
171-
uses: actions/create-github-app-token@v1.11.5
171+
uses: actions/create-github-app-token@v1.12.0
172172
id: app-token
173173
with:
174174
app-id: ${{ vars.AUTOMATION_APP_ID }}

.github/workflows/update-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
pull-requests: write # needed to create pull request
125125
steps:
126126
- name: Generate token
127-
uses: actions/create-github-app-token@v1.11.5
127+
uses: actions/create-github-app-token@v1.12.0
128128
id: app-token
129129
with:
130130
app-id: ${{ vars.AUTOMATION_APP_ID }}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,19 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
99
your `tools:` property to a specific version of the CodeQL CLI earlier than v2.20.4, you will need to update to at least CodeQL v2.20.4 or disable
1010
`actions` analysis.
1111

12+
## 3.28.13 - 24 Mar 2025
13+
14+
No user facing changes.
15+
16+
## 3.28.12 - 19 Mar 2025
17+
18+
- Dependency caching should now cache more dependencies for Java `build-mode: none` extractions. This should speed up workflows and avoid inconsistent alerts in some cases.
19+
- Update default CodeQL bundle version to 2.20.7. [#2810](https://github.com/github/codeql-action/pull/2810)
20+
21+
## 3.28.11 - 07 Mar 2025
22+
23+
- Update default CodeQL bundle version to 2.20.6. [#2793](https://github.com/github/codeql-action/pull/2793)
24+
1225
## 3.28.10 - 21 Feb 2025
1326

1427
- Update default CodeQL bundle version to 2.20.5. [#2772](https://github.com/github/codeql-action/pull/2772)

justfile

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ all: lint sync
33

44
# Lint source typescript
55
lint:
6-
npm run lint -- --fix
6+
npm run lint-fix
77

88
# Sync generated files (javascript and PR checks)
99
sync: build update-pr-checks
@@ -15,3 +15,16 @@ update-pr-checks:
1515
# Transpile typescript code into javascript
1616
build:
1717
npm run build
18+
19+
# Build then run all the tests
20+
test: build
21+
npm run test
22+
23+
# Run the tests for a single file
24+
test_file filename: build
25+
npx ava --verbose {{filename}}
26+
27+
[doc("Refresh the .js build artefacts in the lib directory")]
28+
[confirm]
29+
refresh-lib:
30+
rm -rf lib && npm run build

lib/analyze-action-post.js

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action-post.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js

Lines changed: 11 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js

Lines changed: 42 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)