Update constraints-dev.txt #9
This file contains hidden or 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 constraints-dev.txt | |
| on: | |
| schedule: | |
| - cron: '0 3 * * 1' # Every Monday at 03:00 UTC | |
| workflow_dispatch: | |
| jobs: | |
| update-constraints: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Checkout "update-constraints" in-house CI action | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| repository: instructlab/ci-actions | |
| path: ci-actions | |
| ref: v0.2.1 | |
| sparse-checkout: | | |
| actions/update-constraints | |
| - name: Update constraints | |
| id: update-constraints | |
| uses: ./ci-actions/actions/update-constraints | |
| with: | |
| gh-token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} |