Skip to content

Commit 0f24d46

Browse files
committed
Merge branch 'main' into rvermeulen/extend-init-complete-status-report
Signed-off-by: Remco Vermeulen <[email protected]>
2 parents e6c9383 + 9c646c2 commit 0f24d46

32 files changed

+401
-373
lines changed

.github/workflows/__all-platform-bundle.yml

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

.github/workflows/__build-mode-manual.yml

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

.github/workflows/__export-file-baseline-information.yml

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

.github/workflows/__multi-language-autodetect.yml

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

.github/workflows/__scaling-reserved-ram.yml

-104
This file was deleted.

.github/workflows/__swift-custom-build.yml

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

.github/workflows/__test-local-codeql.yml

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

.github/workflows/__unset-environment.yml

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

.github/workflows/debug-artifacts.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ jobs:
5252
debug: true
5353
debug-artifact-name: my-debug-artifacts
5454
debug-database-name: my-db
55-
- uses: ./../action/.github/actions/setup-swift
56-
with:
57-
codeql-path: ${{ steps.init.outputs.codeql-path }}
55+
# We manually exclude Swift from the languages list here, as it is not supported on Ubuntu
56+
languages: cpp,csharp,go,java,javascript,python,ruby
5857
- name: Build code
5958
shell: bash
6059
run: ./build.sh

.github/workflows/pr-checks.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: PR Checks
22

33
on:
44
push:
5-
branches: [main, releases/v*]
65
pull_request:
76
# Run checks on reopened draft PRs to support triggering PR checks on draft PRs that were opened
87
# by other workflows.
@@ -53,6 +52,7 @@ jobs:
5352
run: .github/workflows/script/check-js.sh
5453

5554
check-node-modules:
55+
if: github.event_name != 'push' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/releases/v')
5656
name: Check modules up to date
5757
runs-on: macos-latest
5858
timeout-minutes: 45
@@ -63,6 +63,7 @@ jobs:
6363
run: .github/workflows/script/check-node-modules.sh
6464

6565
check-file-contents:
66+
if: github.event_name != 'push' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/releases/v')
6667
name: Check file contents
6768
runs-on: ubuntu-latest
6869
timeout-minutes: 45
@@ -87,6 +88,7 @@ jobs:
8788
run: .github/workflows/script/verify-pr-checks.sh
8889

8990
npm-test:
91+
if: github.event_name != 'push' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/releases/v')
9092
name: Unit Test
9193
needs: [check-js, check-node-modules]
9294
strategy:
@@ -106,7 +108,7 @@ jobs:
106108
npm test
107109
108110
check-node-version:
109-
if: ${{ github.event.pull_request }}
111+
if: github.event.pull_request
110112
name: Check Action Node versions
111113
runs-on: ubuntu-latest
112114
timeout-minutes: 45

.github/workflows/test-codeql-bundle-all.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ jobs:
4242
- id: init
4343
uses: ./../action/init
4444
with:
45+
# We manually exclude Swift from the languages list here, as it is not supported on Ubuntu
46+
languages: cpp,csharp,go,java,javascript,python,ruby
4547
tools: ${{ steps.prepare-test.outputs.tools-url }}
46-
- uses: ./../action/.github/actions/setup-swift
47-
with:
48-
codeql-path: ${{ steps.init.outputs.codeql-path }}
4948
- name: Build code
5049
shell: bash
5150
run: ./build.sh

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
66

77
## [UNRELEASED]
88

9-
No user facing changes.
9+
- _Deprecation:_ Swift analysis on Ubuntu runner images is no longer supported. Please migrate to a macOS runner if this affects you. [#2403](https://github.com/github/codeql-action/pull/2403)
1010

1111
## 3.25.15 - 26 Jul 2024
1212

1313
- Update default CodeQL bundle version to 2.18.1. [#2385](https://github.com/github/codeql-action/pull/2385)
1414

1515
## 3.25.14 - 25 Jul 2024
1616

17-
- Experimental: add a new `start-proxy` action which starts the same HTTP proxy as used by [`github/dependabot-action`](https://github.com/github/dependabot-action). Do not use this in production as it is part of an internal experiment and subject to change at any time.
17+
- Experimental: add a new `start-proxy` action which starts the same HTTP proxy as used by [`github/dependabot-action`](https://github.com/github/dependabot-action). Do not use this in production as it is part of an internal experiment and subject to change at any time. [#2376](https://github.com/github/codeql-action/pull/2376)
1818

1919
## 3.25.13 - 19 Jul 2024
2020

lib/init-action.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)