Update Selenium and Playwright dependencies #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-jquery-validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Update dependencies | |
run: pwsh eng/scripts/update-selenium-and-playwright-versions.ps1 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |