mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
084d761dfc
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.7.1 to 5.0.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](65d7f2d534...0a5c615913
) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> PR-URL: https://github.com/nodejs/node/pull/51335 Refs:0a5c615913
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
328 lines
12 KiB
YAML
328 lines
12 KiB
YAML
name: Tools and deps update
|
|
on:
|
|
schedule:
|
|
# Run once a week at 00:05 AM UTC on Sunday.
|
|
- cron: 5 0 * * 0
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
id:
|
|
description: The ID of the job to run
|
|
required: true
|
|
default: all
|
|
type: choice
|
|
options:
|
|
- all
|
|
- acorn
|
|
- acorn-walk
|
|
- ada
|
|
- base64
|
|
- brotli
|
|
- c-ares
|
|
- cjs-module-lexer
|
|
- corepack
|
|
- doc
|
|
- eslint
|
|
- github_reporter
|
|
- googletest
|
|
- histogram
|
|
- icu
|
|
- libuv
|
|
- lint-md-dependencies
|
|
- llhttp
|
|
- minimatch
|
|
- nghttp2
|
|
- nghttp3
|
|
- ngtcp2
|
|
- postject
|
|
- root-certificates
|
|
- simdjson
|
|
- simdutf
|
|
- undici
|
|
- uvwasi
|
|
- zlib
|
|
|
|
env:
|
|
PYTHON_VERSION: '3.11'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
tools-deps-update:
|
|
if: github.repository == 'nodejs/node'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false # Prevent other jobs from aborting if one fails
|
|
matrix:
|
|
include:
|
|
- id: acorn
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-acorn.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: acorn-walk
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-acorn-walk.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: ada
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-ada.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: base64
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-base64.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: brotli
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-brotli.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: c-ares
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-c-ares.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: cjs-module-lexer
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-cjs-module-lexer.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: corepack
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
make corepack-update
|
|
echo "NEW_VERSION=$(node deps/corepack/dist/corepack.js --version)" >> $GITHUB_ENV
|
|
- id: doc
|
|
subsystem: tools
|
|
label: tools
|
|
run: |
|
|
cd tools/doc
|
|
npm ci
|
|
NEW_VERSION=$(npm outdated --parseable | cut -d: -f4 | xargs)
|
|
if [ "$NEW_VERSION" != "" ]; then
|
|
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
|
|
rm -rf package-lock.json node_modules
|
|
# Include $NEW_VERSION to explicitly update the package.json
|
|
# entry for the dependency and also so that semver-major updates
|
|
# are not skipped.
|
|
npm install --ignore-scripts $NEW_VERSION
|
|
npm install --ignore-scripts
|
|
fi
|
|
- id: eslint
|
|
subsystem: tools
|
|
label: tools
|
|
run: |
|
|
./tools/dep_updaters/update-eslint.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: github_reporter
|
|
subsystem: tools
|
|
label: tools
|
|
run: |
|
|
./tools/dep_updaters/update-github-reporter.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: googletest
|
|
subsystem: deps
|
|
label: dependencies, test
|
|
run: |
|
|
./tools/dep_updaters/update-googletest.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: histogram
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-histogram.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: icu
|
|
subsystem: deps
|
|
label: dependencies, test
|
|
run: |
|
|
./tools/dep_updaters/update-icu.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: libuv
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-libuv.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: lint-md-dependencies
|
|
subsystem: tools
|
|
label: tools
|
|
run: |
|
|
cd tools/lint-md
|
|
npm ci
|
|
NEW_VERSION=$(npm outdated --parseable | cut -d: -f4 | xargs)
|
|
if [ "$NEW_VERSION" != "" ]; then
|
|
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV
|
|
rm -rf package-lock.json node_modules
|
|
# Include $NEW_VERSION to explicitly update the package.json
|
|
# entry for the dependency and also so that semver-major updates
|
|
# are not skipped.
|
|
npm install --ignore-scripts $NEW_VERSION
|
|
npm install --ignore-scripts
|
|
cd ../..
|
|
make lint-md-rollup
|
|
fi
|
|
- id: llhttp
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-llhttp.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: minimatch
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-minimatch.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: nghttp2
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-nghttp2.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: nghttp3
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-nghttp3.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: ngtcp2
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-ngtcp2.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: postject
|
|
subsystem: deps,test
|
|
label: test
|
|
run: |
|
|
./tools/dep_updaters/update-postject.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: root-certificates
|
|
subsystem: crypto
|
|
label: crypto, notable-change
|
|
run: |
|
|
node ./tools/dep_updaters/update-root-certs.mjs -v -f "$GITHUB_ENV"
|
|
- id: simdjson
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-simdjson.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: simdutf
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-simdutf.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: undici
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-undici.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: uvwasi
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-uvwasi.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- id: zlib
|
|
subsystem: deps
|
|
label: dependencies
|
|
run: |
|
|
./tools/dep_updaters/update-zlib.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
|
if: matrix.id == 'icu' && (github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id)
|
|
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
|
|
with:
|
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
- run: ${{ matrix.run }}
|
|
if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
|
|
- name: Generate commit message if not set
|
|
if: env.COMMIT_MSG == '' && (github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id)
|
|
run: |
|
|
echo "COMMIT_MSG=${{ matrix.subsystem }}: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}" >> "$GITHUB_ENV"
|
|
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
|
|
if: github.event_name == 'schedule' || inputs.id == 'all' || inputs.id == matrix.id
|
|
# Creates a PR or update the Action's existing PR, or
|
|
# no-op if the base branch is already up-to-date.
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
|
|
with:
|
|
author: Node.js GitHub Bot <github-bot@iojs.org>
|
|
body: This is an automated update of ${{ matrix.id }} to ${{ env.NEW_VERSION }}.
|
|
branch: actions/tools-update-${{ matrix.id }} # Custom branch *just* for this Action.
|
|
commit-message: ${{ env.COMMIT_MSG }}
|
|
labels: ${{ matrix.label }}
|
|
title: '${{ matrix.subsystem }}: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}'
|
|
update-pull-request-title-and-body: true
|