mirror of
https://github.com/nodejs/node.git
synced 2025-12-27 23:41:14 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.1 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 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/60925 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ulises Gascón <ulisesgascongonzalez@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
58 lines
2.0 KiB
YAML
58 lines
2.0 KiB
YAML
name: V8 patch update
|
|
on:
|
|
schedule:
|
|
# Run once a week at 00:05 AM UTC on Sunday.
|
|
- cron: 5 0 * * 0
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
NODE_VERSION: lts/*
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
v8-update:
|
|
if: github.repository == 'nodejs/node'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
with:
|
|
persist-credentials: false
|
|
- name: Cache node modules and update-v8
|
|
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
id: cache-v8-npm
|
|
env:
|
|
cache-name: cache-v8-npm
|
|
with:
|
|
path: |
|
|
~/.update-v8
|
|
~/.npm
|
|
key: ${{ runner.os }}-build-${{ env.cache-name }}
|
|
- name: Install Node.js
|
|
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
- name: Install @node-core/utils
|
|
run: npm install -g @node-core/utils
|
|
- name: Setup Git config
|
|
run: |
|
|
git config --global user.name "Node.js GitHub Bot"
|
|
git config --global user.email "github-bot@iojs.org"
|
|
- name: Check and download new V8 version
|
|
run: |
|
|
./tools/dep_updaters/update-v8-patch.sh > temp-output
|
|
cat temp-output
|
|
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
|
|
rm temp-output
|
|
- uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
|
|
# Creates a PR or update the Action's existing PR, or
|
|
# no-op if the base branch is already up-to-date.
|
|
with:
|
|
token: ${{ secrets.GH_USER_TOKEN }}
|
|
branch: actions/update-v8-patch # Custom branch *just* for this Action.
|
|
delete-branch: true
|
|
title: 'deps: patch V8 to ${{ env.NEW_VERSION }}'
|
|
body: This is an automated patch update of V8 to ${{ env.NEW_VERSION }}.
|
|
labels: dependencies, v8 engine
|