mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
3025c9910d
* yamllint for newer file * Allow for proper, lower-level, pinning Makes for increased reproducibility (and overall control)
22 lines
413 B
YAML
22 lines
413 B
YAML
---
|
|
name: Update 3rd party licenses (automation)
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * *'
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
update:
|
|
name: Update 3rd party licenses
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- run:
|
|
./.github/workflows/update_3rd_party_licenses.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|