Skip to content

Commit 74da9d1

Browse files
committed
Merge branch 'main' into aeisenberg/checkout-path-commitoid
2 parents f8dcc73 + cdf3c9d commit 74da9d1

14 files changed

+37
-10
lines changed

.github/workflows/pr-checks.yml

+16
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
lint-js:
1414
name: Lint
1515
runs-on: ubuntu-latest
16+
timeout-minutes: 30
1617

1718
steps:
1819
- uses: actions/checkout@v2
@@ -21,6 +22,7 @@ jobs:
2122

2223
check-js:
2324
runs-on: ubuntu-latest
25+
timeout-minutes: 30
2426

2527
steps:
2628
- uses: actions/checkout@v2
@@ -30,6 +32,7 @@ jobs:
3032
check-node-modules:
3133
name: Check modules up to date
3234
runs-on: macos-latest
35+
timeout-minutes: 30
3336

3437
steps:
3538
- uses: actions/checkout@v2
@@ -39,6 +42,7 @@ jobs:
3942
verify-pr-checks:
4043
name: Verify PR checks up to date
4144
runs-on: ubuntu-latest
45+
timeout-minutes: 30
4246

4347
steps:
4448
- uses: actions/checkout@v2
@@ -60,6 +64,7 @@ jobs:
6064
matrix:
6165
os: [ubuntu-latest, macos-latest]
6266
runs-on: ${{ matrix.os }}
67+
timeout-minutes: 30
6368

6469
steps:
6570
- uses: actions/checkout@v2
@@ -69,6 +74,7 @@ jobs:
6974
runner-analyze-javascript-ubuntu:
7075
name: Runner ubuntu JS analyze
7176
needs: [check-js, check-node-modules]
77+
timeout-minutes: 30
7278
runs-on: ubuntu-latest
7379

7480
steps:
@@ -97,6 +103,7 @@ jobs:
97103
runner-analyze-javascript-windows:
98104
name: Runner windows JS analyze
99105
needs: [check-js, check-node-modules]
106+
timeout-minutes: 30
100107
runs-on: windows-latest
101108

102109
steps:
@@ -121,6 +128,7 @@ jobs:
121128
runner-analyze-javascript-macos:
122129
name: Runner macos JS analyze
123130
needs: [check-js, check-node-modules]
131+
timeout-minutes: 30
124132
runs-on: macos-latest
125133

126134
steps:
@@ -145,6 +153,7 @@ jobs:
145153
runner-analyze-csharp-ubuntu:
146154
name: Runner ubuntu C# analyze
147155
needs: [check-js, check-node-modules]
156+
timeout-minutes: 30
148157
runs-on: ubuntu-latest
149158

150159
steps:
@@ -184,6 +193,7 @@ jobs:
184193
needs: [check-js, check-node-modules]
185194
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
186195
# `windows-latest`.
196+
timeout-minutes: 30
187197
runs-on: windows-2019
188198

189199
steps:
@@ -228,6 +238,7 @@ jobs:
228238

229239
runner-analyze-csharp-macos:
230240
name: Runner macos C# analyze
241+
timeout-minutes: 30
231242
needs: [check-js, check-node-modules]
232243
runs-on: macos-latest
233244

@@ -266,6 +277,7 @@ jobs:
266277

267278
runner-analyze-csharp-autobuild-ubuntu:
268279
name: Runner ubuntu autobuild C# analyze
280+
timeout-minutes: 30
269281
needs: [check-js, check-node-modules]
270282
runs-on: ubuntu-latest
271283

@@ -301,6 +313,7 @@ jobs:
301313
TEST_MODE: true
302314

303315
runner-analyze-csharp-autobuild-windows:
316+
timeout-minutes: 30
304317
name: Runner windows autobuild C# analyze
305318
needs: [check-js, check-node-modules]
306319
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
@@ -343,6 +356,7 @@ jobs:
343356
name: Runner macos autobuild C# analyze
344357
needs: [check-js, check-node-modules]
345358
runs-on: macos-latest
359+
timeout-minutes: 30
346360

347361
steps:
348362
- uses: actions/checkout@v2
@@ -380,6 +394,7 @@ jobs:
380394
name: Runner upload sarif
381395
needs: [check-js, check-node-modules]
382396
runs-on: ubuntu-latest
397+
timeout-minutes: 30
383398

384399
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.base.repo.id == github.event.pull_request.head.repo.id }}
385400

@@ -402,6 +417,7 @@ jobs:
402417
name: Runner ubuntu extractor RAM and threads options
403418
needs: [check-js, check-node-modules]
404419
runs-on: ubuntu-latest
420+
timeout-minutes: 30
405421

406422
steps:
407423
- uses: actions/checkout@v2

.github/workflows/python-deps.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
test-setup-python-scripts:
13+
timeout-minutes: 30
1314
runs-on: ${{ matrix.os }}
1415
strategy:
1516
fail-fast: false

.github/workflows/release-runner.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
release-runner:
12+
timeout-minutes: 30
1213
runs-on: ubuntu-latest
1314
env:
1415
RELEASE_TAG: "${{ github.event.inputs.bundle-tag }}"

.github/workflows/split.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ on:
2626
jobs:
2727
build:
2828
runs-on: ubuntu-latest
29+
timeout-minutes: 30
2930
env:
3031
CLI_RELEASE: "${{ github.event.inputs.cli-release }}"
3132
RELEASE_TAG: "${{ github.event.inputs.bundle-tag }}"

.github/workflows/update-dependencies.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
jobs:
77
update:
88
name: Update dependencies
9+
timeout-minutes: 30
910
runs-on: macos-latest
1011
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies') && (github.event.pull_request.head.repo.full_name == 'github/codeql-action')
1112
steps:

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

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
jobs:
1111
update:
12+
timeout-minutes: 30
1213
runs-on: ubuntu-latest
1314
if: ${{ github.repository == 'github/codeql-action' }}
1415
steps:

.github/workflows/update-supported-enterprise-server-versions.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
update-supported-enterprise-server-versions:
9+
timeout-minutes: 30
910
runs-on: ubuntu-latest
1011
if: ${{ github.repository == 'github/codeql-action' }}
1112

CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
## [UNRELEASED]
44

5-
- Update default CodeQL bundle version to 2.8.2.
6-
- Fix a bug where old results can be uploaded if the languages in a repository change when using a non-ephemeral self-hosted runner.
5+
No user facing changes.
6+
7+
## 1.1.4 - 07 Mar 2022
8+
9+
- Update default CodeQL bundle version to 2.8.2. [#950](https://github.com/github/codeql-action/pull/950)
10+
- Fix a bug where old results can be uploaded if the languages in a repository change when using a non-ephemeral self-hosted runner. [#955](https://github.com/github/codeql-action/pull/955)
711

812
## 1.1.3 - 23 Feb 2022
913

node_modules/.package-lock.json

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

package-lock.json

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {
@@ -75,4 +75,4 @@
7575
"resolutions": {
7676
"glob-parent": ">=5.1.2"
7777
}
78-
}
78+
}

pr-checks/sync.py

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def writeHeader(checkStream):
8585
}
8686
},
8787
'name': checkSpecification['name'],
88+
'timeout-minutes': 30,
8889
'runs-on': '${{ matrix.os }}',
8990
'steps': steps
9091
}

runner/package-lock.json

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

runner/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql-runner",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"private": true,
55
"description": "CodeQL runner",
66
"scripts": {
@@ -14,4 +14,4 @@
1414
"webpack": "^5.50.0",
1515
"webpack-cli": "^4.7.2"
1616
}
17-
}
17+
}

0 commit comments

Comments
 (0)