mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 15:16:08 +00:00
713cc2ffe3
* Update all our deps Get rid of warnings such as: * `save-state` will be deprecated * `set-output` will be deprecated * nodejs 12 is being deprecated ... Rely on tests to make sure the actions still works * Fix as per CI results * Get rid of deprecated containers * Have a warningless run We're not testing rebar3 here, in any case
22 lines
438 B
YAML
22 lines
438 B
YAML
---
|
|
name: update_3rd_party_licenses
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 12 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update:
|
|
name: Update 3rd party licenses
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '14'
|
|
- run:
|
|
./.github/workflows/update_3rd_party_licenses.sh
|
|
env:
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|