constellation/.github/workflows/update-rpms.yml
renovate[bot] 9cd1184244
deps: update GitHub action dependencies (#3176)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-06-19 15:19:41 +02:00

58 lines
2.0 KiB
YAML

name: Update locked rpms
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * 0" # every sunday at 8am
jobs:
update-rpms:
runs-on: "ubuntu-22.04"
permissions:
id-token: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
token: ${{ secrets.CI_COMMIT_PUSH_PR }}
- name: Assume AWS role to upload Bazel dependencies to S3
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
with:
role-to-assume: arn:aws:iam::795746500882:role/GithubConstellationMirrorWrite
aws-region: eu-central-1
- name: Setup bazel
uses: ./.github/actions/setup_bazel_nix
- name: Update rpms
run: bazel run //image/mirror:update_packages
- name: Check if there are any changes
id: git-check
run: |
if git diff --quiet; then
echo "commitChanges=false" | tee -a "${GITHUB_OUTPUT}"
else
echo "commitChanges=true" | tee -a "${GITHUB_OUTPUT}"
fi
- name: Create pull request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
with:
branch: "image/automated/update-rpms-${{ github.run_number }}"
base: main
title: "image: update locked rpms"
body: |
:robot: *This is an automated PR.* :robot:
The PR is triggered as part of the scheduled rpm update workflow.
It updates the locked rpm packages that form the Constellation OS images.
commit-message: "image: update locked rpms"
committer: edgelessci <edgelessci@users.noreply.github.com>
author: edgelessci <edgelessci@users.noreply.github.com>
labels: dependencies
# We need to push changes using a token, otherwise triggers like on:push and on:pull_request won't work.
token: ${{ !github.event.pull_request.head.repo.fork && secrets.CI_COMMIT_PUSH_PR || '' }}