-
Notifications
You must be signed in to change notification settings - Fork 17
44 lines (36 loc) · 1.07 KB
/
updatecli.yml
File metadata and controls
44 lines (36 loc) · 1.07 KB
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
42
43
44
---
name: "Updatecli: Dependency Management"
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 */12 * * *'
repository_dispatch:
types: [epinio-release]
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: 18.x
# cache: yarn
# 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 }}