Skip to content

Update Selenium and Playwright dependencies #161

Update Selenium and Playwright dependencies

Update Selenium and Playwright dependencies #161

name: Update Selenium and Playwright dependencies
on:
schedule:
- cron: '0 0 1-7 * 1' # Run on the first monday of the month
workflow_dispatch: # Allow manual runs
permissions:
contents: write
issues: write
pull-requests: write
jobs:
update-selenium-and-playwright:
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' || github.repository_owner == 'dotnet'
steps:
- name: Checkout code
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98 # v4.2.2
- name: Update dependencies
run: pwsh eng/scripts/update-selenium-and-playwright-versions.ps1
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}