mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
23 lines
459 B
YAML
23 lines
459 B
YAML
name: Check Outdated Version Pinning
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * 1' # Run at 12:00 UTC every Monday
|
|
|
|
permissions:
|
|
issues: write
|
|
contents: read
|
|
|
|
jobs:
|
|
check-pinning-dates:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Validate JSON Schema
|
|
shell: pwsh
|
|
run: ./helpers/CheckOutdatedVersionPinning.ps1
|
|
env:
|
|
GH_TOKEN: ${{ github.token }}
|