Skip to content

Commit 8266ae1

Browse files
committed
Merge branch 'main' of https://github.com/github/codeql-action into copilot/add-tools-input-source-repository
2 parents 8c41253 + e2d518d commit 8266ae1

File tree

81 files changed

+131990
-129087
lines changed

Some content is hidden

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

81 files changed

+131990
-129087
lines changed

.github/actions/release-branches/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ runs:
2222
MAJOR_VERSION: ${{ inputs.major_version }}
2323
LATEST_TAG: ${{ inputs.latest_tag }}
2424
run: |
25-
python ${{ github.action_path }}/release-branches.py \
25+
npm ci
26+
npx tsx ./pr-checks/release-branches.ts \
2627
--major-version "$MAJOR_VERSION" \
2728
--latest-tag "$LATEST_TAG"
2829
shell: bash

.github/actions/release-branches/release-branches.py

Lines changed: 0 additions & 55 deletions
This file was deleted.

.github/actions/release-initialise/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ runs:
1515
run: echo "$GITHUB_CONTEXT"
1616
shell: bash
1717

18+
- name: Set up Node
19+
uses: actions/setup-node@v6
20+
with:
21+
node-version: 20
22+
cache: 'npm'
23+
1824
- name: Set up Python
1925
uses: actions/setup-python@v6
2026
with:

.github/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
version: 2
22
updates:
33
- package-ecosystem: npm
4-
directory: "/"
4+
directories:
5+
- "/"
6+
- "/pr-checks"
57
schedule:
68
interval: weekly
79
cooldown:

.github/releases.ini

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/__language-aliases.yml

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

.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/__start-proxy.yml

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

.github/workflows/debug-artifacts-failure-safe.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
uses: ./../action/.github/actions/verify-debug-artifact-scan-completed
6767
- uses: ./../action/init
6868
with:
69+
languages: cpp,csharp,go,java,javascript,python
6970
tools: ${{ steps.prepare-test.outputs.tools-url }}
7071
debug: true
7172
debug-artifact-name: my-debug-artifacts

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ defaults:
2424

2525
jobs:
2626
merge-back:
27-
runs-on: ubuntu-slim
27+
runs-on: ubuntu-latest
2828
environment: Automation
2929
if: github.repository == 'github/codeql-action'
3030
env:
@@ -131,7 +131,7 @@ jobs:
131131
echo "::endgroup::"
132132
133133
- name: Generate token
134-
uses: actions/create-github-app-token@v3.0.0
134+
uses: actions/create-github-app-token@v3.1.1
135135
id: app-token
136136
with:
137137
app-id: ${{ vars.AUTOMATION_APP_ID }}

0 commit comments

Comments
 (0)