Skip to content

Commit

Permalink
Merge branch 'main' into aeisenberg/checkout-path-commitoid
Browse files Browse the repository at this point in the history
  • Loading branch information
aeisenberg committed Mar 10, 2022
2 parents f8dcc73 + cdf3c9d commit 74da9d1
Show file tree
Hide file tree
Showing 14 changed files with 37 additions and 10 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pr-checks.yml
Expand Up @@ -13,6 +13,7 @@ jobs:
lint-js:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand All @@ -21,6 +22,7 @@ jobs:

check-js:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand All @@ -30,6 +32,7 @@ jobs:
check-node-modules:
name: Check modules up to date
runs-on: macos-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand All @@ -39,6 +42,7 @@ jobs:
verify-pr-checks:
name: Verify PR checks up to date
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand All @@ -60,6 +64,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand All @@ -69,6 +74,7 @@ jobs:
runner-analyze-javascript-ubuntu:
name: Runner ubuntu JS analyze
needs: [check-js, check-node-modules]
timeout-minutes: 30
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -97,6 +103,7 @@ jobs:
runner-analyze-javascript-windows:
name: Runner windows JS analyze
needs: [check-js, check-node-modules]
timeout-minutes: 30
runs-on: windows-latest

steps:
Expand All @@ -121,6 +128,7 @@ jobs:
runner-analyze-javascript-macos:
name: Runner macos JS analyze
needs: [check-js, check-node-modules]
timeout-minutes: 30
runs-on: macos-latest

steps:
Expand All @@ -145,6 +153,7 @@ jobs:
runner-analyze-csharp-ubuntu:
name: Runner ubuntu C# analyze
needs: [check-js, check-node-modules]
timeout-minutes: 30
runs-on: ubuntu-latest

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

steps:
Expand Down Expand Up @@ -228,6 +238,7 @@ jobs:

runner-analyze-csharp-macos:
name: Runner macos C# analyze
timeout-minutes: 30
needs: [check-js, check-node-modules]
runs-on: macos-latest

Expand Down Expand Up @@ -266,6 +277,7 @@ jobs:

runner-analyze-csharp-autobuild-ubuntu:
name: Runner ubuntu autobuild C# analyze
timeout-minutes: 30
needs: [check-js, check-node-modules]
runs-on: ubuntu-latest

Expand Down Expand Up @@ -301,6 +313,7 @@ jobs:
TEST_MODE: true

runner-analyze-csharp-autobuild-windows:
timeout-minutes: 30
name: Runner windows autobuild C# analyze
needs: [check-js, check-node-modules]
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
Expand Down Expand Up @@ -343,6 +356,7 @@ jobs:
name: Runner macos autobuild C# analyze
needs: [check-js, check-node-modules]
runs-on: macos-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -380,6 +394,7 @@ jobs:
name: Runner upload sarif
needs: [check-js, check-node-modules]
runs-on: ubuntu-latest
timeout-minutes: 30

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

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

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python-deps.yml
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
test-setup-python-scripts:
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release-runner.yml
Expand Up @@ -9,6 +9,7 @@ on:

jobs:
release-runner:
timeout-minutes: 30
runs-on: ubuntu-latest
env:
RELEASE_TAG: "${{ github.event.inputs.bundle-tag }}"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/split.yml
Expand Up @@ -26,6 +26,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
CLI_RELEASE: "${{ github.event.inputs.cli-release }}"
RELEASE_TAG: "${{ github.event.inputs.bundle-tag }}"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-dependencies.yml
Expand Up @@ -6,6 +6,7 @@ on:
jobs:
update:
name: Update dependencies
timeout-minutes: 30
runs-on: macos-latest
if: contains(github.event.pull_request.labels.*.name, 'Update dependencies') && (github.event.pull_request.head.repo.full_name == 'github/codeql-action')
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-release-branch.yml
Expand Up @@ -9,6 +9,7 @@ on:

jobs:
update:
timeout-minutes: 30
runs-on: ubuntu-latest
if: ${{ github.repository == 'github/codeql-action' }}
steps:
Expand Down
Expand Up @@ -6,6 +6,7 @@ on:

jobs:
update-supported-enterprise-server-versions:
timeout-minutes: 30
runs-on: ubuntu-latest
if: ${{ github.repository == 'github/codeql-action' }}

Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Expand Up @@ -2,8 +2,12 @@

## [UNRELEASED]

- Update default CodeQL bundle version to 2.8.2.
- Fix a bug where old results can be uploaded if the languages in a repository change when using a non-ephemeral self-hosted runner.
No user facing changes.

## 1.1.4 - 07 Mar 2022

- Update default CodeQL bundle version to 2.8.2. [#950](https://github.com/github/codeql-action/pull/950)
- 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)

## 1.1.3 - 23 Feb 2022

Expand Down
2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "codeql",
"version": "1.1.4",
"version": "1.1.5",
"private": true,
"description": "CodeQL action",
"scripts": {
Expand Down Expand Up @@ -75,4 +75,4 @@
"resolutions": {
"glob-parent": ">=5.1.2"
}
}
}
1 change: 1 addition & 0 deletions pr-checks/sync.py
Expand Up @@ -85,6 +85,7 @@ def writeHeader(checkStream):
}
},
'name': checkSpecification['name'],
'timeout-minutes': 30,
'runs-on': '${{ matrix.os }}',
'steps': steps
}
Expand Down
2 changes: 1 addition & 1 deletion runner/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions runner/package.json
@@ -1,6 +1,6 @@
{
"name": "codeql-runner",
"version": "1.1.4",
"version": "1.1.5",
"private": true,
"description": "CodeQL runner",
"scripts": {
Expand All @@ -14,4 +14,4 @@
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2"
}
}
}

0 comments on commit 74da9d1

Please sign in to comment.