Files
runner-images/.github/workflows/check-pinned-versions.yml
lawrencegripper 613e24f3cd update
2025-01-31 10:46:52 +00:00

25 lines
465 B
YAML

on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 0 * * *' # Run at midnight UTC every day
permissions:
issues: write
contents: read
jobs:
validate-json:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Validate JSON Schema
shell: pwsh
run: ./helpers/CheckOutdatedVersionPinning.ps1
env:
GH_TOKEN: ${{ github.token }}