Skip to content

Commit 6bb031a

Browse files
authored
Merge pull request #2798 from github/update-v3.28.11-56b25d5d5
Merge main into releases/v3
2 parents b56ba49 + 6bca7dd commit 6bb031a

File tree

3,147 files changed

+21072
-15114
lines changed

Some content is hidden

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

3,147 files changed

+21072
-15114
lines changed

.github/actions/check-codescanning-config/action.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,12 @@ runs:
6161
- name: Check config
6262
working-directory: ${{ github.action_path }}
6363
shell: bash
64-
run: ts-node ./index.ts "${{ runner.temp }}/user-config.yaml" '${{ inputs.expected-config-file-contents }}'
65-
64+
env:
65+
EXPECTED_CONFIG_FILE_CONTENTS: '${{ inputs.expected-config-file-contents }}'
66+
run: ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
6667
- name: Clean up
6768
shell: bash
6869
if: always()
6970
run: |
70-
rm -rf ${{ runner.temp }}/codescanning-config-cli-test
71-
rm -rf ${{ runner.temp }}/user-config.yaml
71+
rm -rf $RUNNER_TEMP/codescanning-config-cli-test
72+
rm -rf $RUNNER_TEMP/user-config.yaml

.github/actions/check-codescanning-config/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const actualConfig = loadActualConfig()
88

99
const rawExpectedConfig = process.argv[3].trim()
1010
if (!rawExpectedConfig) {
11-
core.info('No expected configuration provided')
11+
core.setFailed('No expected configuration provided')
1212
} else {
1313
core.startGroup('Expected generated user config')
1414
core.info(yaml.dump(JSON.parse(rawExpectedConfig)))

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

+1-1
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@0d564482f06ca65fa9e77e2510873638c82206f2
171+
uses: actions/create-github-app-token@v1.11.6
172172
id: app-token
173173
with:
174174
app-id: ${{ vars.AUTOMATION_APP_ID }}

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

+1-1
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@0d564482f06ca65fa9e77e2510873638c82206f2
127+
uses: actions/create-github-app-token@v1.11.6
128128
id: app-token
129129
with:
130130
app-id: ${{ vars.AUTOMATION_APP_ID }}

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
repos:
22
- repo: local
33
hooks:
4+
- id: lint-ts
5+
name: Lint typescript code
6+
files: \.ts$
7+
language: system
8+
entry: npm run lint -- --fix
49
- id: compile-ts
510
name: Compile typescript
611
files: \.[tj]s$
712
language: system
813
entry: npm run build
914
pass_filenames: false
10-
- id: lint-ts
11-
name: Lint typescript code
12-
files: \.ts$
13-
language: system
14-
entry: npm run lint -- --fix
1515
- id: pr-checks-sync
1616
name: Synchronize PR check workflows
1717
files: ^.github/workflows/__.*\.yml$|^pr-checks

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
44

5+
## 3.28.11 - 07 Mar 2025
6+
7+
- Update default CodeQL bundle version to 2.20.6. [#2793](https://github.com/github/codeql-action/pull/2793)
8+
59
## 3.28.10 - 21 Feb 2025
610

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

justfile

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Perform all working copy cleanup operations
2+
all: lint sync
3+
4+
# Lint source typescript
5+
lint:
6+
npm run lint -- --fix
7+
18
# Sync generated files (javascript and PR checks)
29
sync: build update-pr-checks
310

lib/api-client.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/api-client.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.16", "minimumVersion": "3.12" }
1+
{ "maximumVersion": "3.17", "minimumVersion": "3.12" }

lib/cli-errors.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)