Skip to content

refactor: migrate to bom #1

refactor: migrate to bom

refactor: migrate to bom #1

Workflow file for this run

name: Update Locks

Check failure on line 1 in .github/workflows/update-locks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/update-locks.yml

Invalid workflow file

invalid `cron` attribute "12 35 * * 5"
on:
workflow_dispatch:
schedule:
- cron: '12 35 * * 5'
jobs:
update-versions:
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Calculate simple repository name
id: repo-basename
shell: bash
run: |
echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT
- name: Get Token from Github App
uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.GH_CI_APP_ID }}
private_key: ${{ secrets.GH_CI_APP_PRIVATE_KEY }}
repositories: >-
[${{ toJson(steps.repo-basename.outputs.value) }}]
- name: Update locks if needed
uses: hypertrace/github-actions/raise-lock-pr@main
with:
token: ${{ steps.generate-token.outputs.token }}