-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
change to node20 for all actions
- v3.28.0
- v3.27.9
- v3.27.8
- v3.27.7
- v3.27.6
- v3.27.5
- v3.27.4
- v3.27.3
- v3.27.2
- v3.27.1
- v3.27.0
- v3.26.13
- v3.26.12
- v3.26.11
- v3.26.10
- v3.26.9
- v3.26.8
- v3.26.7
- v3.26.6
- v3.26.5
- v3.26.4
- v3.26.3
- v3.26.2
- v3.26.1
- v3.26.0
- v3.25.15
- v3.25.14
- v3.25.13
- v3.25.12
- v3.25.11
- v3.25.10
- v3.25.9
- v3.25.8
- v3.25.7
- v3.25.6
- v3.25.5
- v3.25.4
- v3.25.3
- v3.25.2
- v3.25.1
- v3.25.0
- v3.24.11
- v3.24.10
- v3.24.9
- v3.24.8
- v3.24.7
- v3.24.6
- v3.24.5
- v3.24.4
- v3.24.3
- v3.24.2
- v3.24.1
- v3.24.0
- v3.23.2
- v3.23.1
- v3.23.0
- v3.22.12
- v3.22.11
- v3
- v2.28.0
- v2.27.9
- v2.27.8
- v2.27.7
- v2.27.6
- v2.27.5
- v2.27.4
- v2.27.3
- v2.27.2
- v2.27.1
- v2.27.0
- v2.26.13
- v2.26.12
- v2.26.11
- v2.26.10
- v2.26.9
- v2.26.8
- v2.26.7
- v2.26.6
- v2.26.5
- v2.26.4
- v2.26.3
- v2.26.2
- v2.26.1
- v2.26.0
- v2.25.15
- v2.25.14
- v2.25.13
- v2.25.12
- v2.25.11
- v2.25.10
- v2.25.9
- v2.25.8
- v2.25.7
- v2.25.6
- v2.25.5
- v2.25.4
- v2.25.3
- v2.25.2
- v2.25.1
- v2.25.0
- v2.24.11
- v2.24.10
- v2.24.9
- v2.24.8
- v2.24.7
- v2.24.6
- v2.24.5
- v2.24.4
- v2.24.3
- v2.24.2
- v2.24.1
- v2.24.0
- v2.23.2
- v2.23.1
- v2.23.0
- v2.22.12
- v2.22.11
- v2
- codeql-bundle-v2.20.0
- codeql-bundle-v2.19.4
- codeql-bundle-v2.19.3
- codeql-bundle-v2.19.2
- codeql-bundle-v2.19.1
- codeql-bundle-v2.19.0
- codeql-bundle-v2.18.4
- codeql-bundle-v2.18.3
- codeql-bundle-v2.18.2
- codeql-bundle-v2.18.1
- codeql-bundle-v2.18.0
- codeql-bundle-v2.17.6
- codeql-bundle-v2.17.5
- codeql-bundle-v2.17.4
- codeql-bundle-v2.17.3
- codeql-bundle-v2.17.2
- codeql-bundle-v2.17.1
- codeql-bundle-v2.17.0
- codeql-bundle-v2.16.6
- codeql-bundle-v2.16.5
- codeql-bundle-v2.16.4
- codeql-bundle-v2.16.3
- codeql-bundle-v2.16.2
- codeql-bundle-v2.16.1
- codeql-bundle-v2.16.0
- codeql-bundle-v2.15.5
- TEST
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,39 @@ jobs: | |
runs-on: ubuntu-latest | ||
timeout-minutes: 45 | ||
|
||
strategy: | ||
matrix: | ||
node-types-version: [16.11, current] # run tests on 16.11 while CodeQL Action v2 is still supported | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Lint | ||
run: npm run-script lint | ||
|
||
- name: Update version of @types/node | ||
if: matrix.node-types-version != 'current' | ||
env: | ||
NODE_TYPES_VERSION: ${{ matrix.node-types-version }} | ||
run: | | ||
# Export `NODE_TYPES_VERSION` so it's available to jq | ||
export NODE_TYPES_VERSION="${NODE_TYPES_VERSION}" | ||
contents=$(jq '.devDependencies."@types/node" = env.NODE_TYPES_VERSION' package.json) | ||
echo "${contents}" > package.json | ||
# Usually we run `npm install` on macOS to ensure that we pick up macOS-only dependencies. | ||
# However we're not checking in the updated lockfile here, so it's fine to run | ||
# `npm install` on Linux. | ||
npm install | ||
if [ ! -z "$(git status --porcelain)" ]; then | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions[bot]" | ||
# The period in `git add --all .` ensures that we stage deleted files too. | ||
git add --all . | ||
git commit -m "Use @types/node=${NODE_TYPES_VERSION}" | ||
fi | ||
- name: Check generated JS | ||
run: .github/workflows/script/check-js.sh | ||
|
||
|
@@ -88,3 +114,44 @@ jobs: | |
# we won't be able to find them on Windows. | ||
npm config set script-shell bash | ||
npm test | ||
check-node-version: | ||
if: ${{ github.event.pull_request }} | ||
name: Check Action Node versions | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 45 | ||
env: | ||
BASE_REF: ${{ github.base_ref }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- id: head-version | ||
name: Verify all Actions use the same Node version | ||
run: | | ||
NODE_VERSION=$(find . -name "action.yml" -exec yq -e '.runs.using' {} \; | grep node | sort | uniq) | ||
echo "NODE_VERSION: ${NODE_VERSION}" | ||
if [[ $(echo "$NODE_VERSION" | wc -l) -gt 1 ]]; then | ||
echo "::error::More than one node version used in 'action.yml' files." | ||
exit 1 | ||
fi | ||
echo "node_version=${NODE_VERSION}" >> $GITHUB_OUTPUT | ||
- id: checkout-base | ||
name: 'Backport: Check out base ref' | ||
if: ${{ startsWith(github.head_ref, 'backport-') }} | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ env.BASE_REF }} | ||
|
||
- name: 'Backport: Verify Node versions unchanged' | ||
if: steps.checkout-base.outcome == 'success' | ||
env: | ||
HEAD_VERSION: ${{ steps.head-version.outputs.node_version }} | ||
run: | | ||
BASE_VERSION=$(find . -name "action.yml" -exec yq -e '.runs.using' {} \; | grep node | sort | uniq) | ||
echo "HEAD_VERSION: ${HEAD_VERSION}" | ||
echo "BASE_VERSION: ${BASE_VERSION}" | ||
if [[ "$BASE_VERSION" != "$HEAD_VERSION" ]]; then | ||
echo "::error::Cannot change the Node version of an Action in a backport PR." | ||
exit 1 | ||
fi |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.