-
Notifications
You must be signed in to change notification settings - Fork 23
41 lines (33 loc) · 1 KB
/
updatecli.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
---
name: "Updatecli: Dependency Management"
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 * * * *'
permissions:
contents: write
pull-requests: write
jobs:
updatecli:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
# https://github.com/actions/setup-node/issues/490
- name: Repair NPM # Update to latest npm and yarn
run: "npm install -g npm yarn"
- name: Install Dependencies
run: "yarn install --frozen-lockfile"
- name: Install Updatecli Binary
uses: updatecli/updatecli-action@v2
- name: Run Updatecli in enforce mode
run: "updatecli compose apply --experimental"
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}