more CI hardening #22
Workflow file for this run
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: Check for component upgrades | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 10 * * *" | |
push: #TODO: rm after testing | |
branches: | |
- KU-629/harden-CI-follow-up | |
permissions: | |
contents: read | |
jobs: | |
update: | |
permissions: | |
contents: write # for peter-evans/create-pull-request to create branch | |
pull-requests: write # for peter-evans/create-pull-request to create a PR | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
branch: | |
# Keep main branch up to date | |
- main | |
# Supported stable release branches | |
- release-1.30 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@v2 | |
with: | |
egress-policy: audit | |
- name: Checking out repo | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
ssh-key: ${{ secrets.DEPLOY_KEY_TO_UPDATE_STRICT_BRANCH }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip3 install -r ./build-scripts/hack/requirements.txt | |
- name: Check for new component versions | |
run: | | |
./build-scripts/hack/update-component-versions.py | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
git-token: ${{ secrets.DEPLOY_KEY_TO_UPDATE_STRICT_BRANCH }} | |
commit-message: "[${{ matrix.branch }}] Update component versions" | |
title: "[${{ matrix.branch }}] Update component versions" | |
body: "[${{ matrix.branch }}] Update component versions" | |
branch: "autoupdate/sync/${{ matrix.branch }}" | |
delete-branch: true | |
base: ${{ matrix.branch }} |