2023-06-01 08:13:42 +00:00
|
|
|
# This workflow will update the pinned browsers
|
|
|
|
|
|
|
|
name: 'Update the pinned browsers'
|
|
|
|
|
2023-06-02 12:19:22 +00:00
|
|
|
permissions: read-all
|
|
|
|
|
2023-06-01 08:13:42 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
# Run everyday at: https://crontab.guru/#0_6_*_*_*.
|
|
|
|
- cron: '0 6 * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2024-01-03 12:09:24 +00:00
|
|
|
update-chrome:
|
2023-06-01 08:13:42 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
2023-10-19 09:46:32 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-06-01 08:13:42 +00:00
|
|
|
- name: Set up Node.js
|
2023-12-19 10:22:36 +00:00
|
|
|
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
2023-06-01 08:13:42 +00:00
|
|
|
with:
|
|
|
|
cache: npm
|
|
|
|
node-version: lts/*
|
2023-06-02 09:52:21 +00:00
|
|
|
- uses: google/wireit@f3a3c79c553122e2fe5829eeac7d815326502903 # setup-github-actions-caching/v1
|
2023-06-01 08:13:42 +00:00
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Build Puppeteer
|
|
|
|
run: npm run build -w puppeteer
|
|
|
|
- name: Update Chrome to latest stable version
|
|
|
|
id: update
|
|
|
|
run: |
|
2024-01-03 12:09:24 +00:00
|
|
|
node tools/update_chrome_revision.mjs
|
2023-06-01 08:13:42 +00:00
|
|
|
- name: Create Pull Request
|
2023-06-02 13:37:48 +00:00
|
|
|
if: ${{ steps.update.outputs.commit }}
|
2023-07-10 07:06:44 +00:00
|
|
|
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2
|
2023-06-01 08:13:42 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
|
2024-01-03 12:09:24 +00:00
|
|
|
branch: browser-automation-bot/update-browser-version-chrome
|
|
|
|
delete-branch: true
|
|
|
|
committer: Browser Automation Bot <browser-automation-bot@google.com>
|
|
|
|
author: Browser Automation Bot <browser-automation-bot@google.com>
|
|
|
|
commit-message: ${{ steps.update.outputs.commit }}
|
|
|
|
title: ${{ steps.update.outputs.commit }}
|
|
|
|
body: 'Automatically generated by https://github.com/puppeteer/puppeteer/blob/main/.github/workflows/update-browser-pins.yml'
|
|
|
|
labels: dependencies
|
|
|
|
update-firefox:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
|
|
|
with:
|
|
|
|
cache: npm
|
|
|
|
node-version: lts/*
|
|
|
|
- uses: google/wireit@f3a3c79c553122e2fe5829eeac7d815326502903 # setup-github-actions-caching/v1
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
- name: Build Puppeteer
|
|
|
|
run: npm run build:test -w @puppeteer/browsers
|
|
|
|
- name: Update Firefox to latest nightly version
|
|
|
|
id: update
|
|
|
|
run: |
|
|
|
|
node packages/browsers/tools/updateVersions.mjs
|
|
|
|
- name: Create Pull Request
|
|
|
|
if: ${{ steps.update.outputs.commit }}
|
|
|
|
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
|
|
|
|
branch: browser-automation-bot/update-browser-version-firefox
|
2023-06-01 08:13:42 +00:00
|
|
|
delete-branch: true
|
|
|
|
committer: Browser Automation Bot <browser-automation-bot@google.com>
|
|
|
|
author: Browser Automation Bot <browser-automation-bot@google.com>
|
2023-06-02 13:37:48 +00:00
|
|
|
commit-message: ${{ steps.update.outputs.commit }}
|
|
|
|
title: ${{ steps.update.outputs.commit }}
|
2023-06-01 08:13:42 +00:00
|
|
|
body: 'Automatically generated by https://github.com/puppeteer/puppeteer/blob/main/.github/workflows/update-browser-pins.yml'
|
|
|
|
labels: dependencies
|