Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/updatecli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,16 @@ on:
schedule:
# Run at 12:00 every Saterday every 14 days
- cron: "0 12 */14 * 6"

jobs:
updatecli:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0

- name: "Setup updatecli"
uses: "updatecli/updatecli-action@5ca36367fadc6ad94d590984fd9c696e783ec635" # v2.96.0
uses: "updatecli/updatecli-action@v2.98.0" # v2.96.0
with:
version: "v0.113.0-rc.1"

version: "v0.112.0"
- name: "Run updatecli"
run: updatecli compose apply --clean-git-branches=true --experimental
env:
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/updatecli_test.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
---
name: Updatecli Test

on:
pull_request:

permissions:
contents: read

jobs:
updatecli:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0

- name: "Setup updatecli"
uses: "updatecli/updatecli-action@5ca36367fadc6ad94d590984fd9c696e783ec635" # v2.96.0
uses: "updatecli/updatecli-action@v2.98.0" # v2.96.0
with:
version: "v0.113.0-rc.1"

version: "v0.112.0"
- name: "Test updatecli in dry-run mode"
run: "updatecli compose diff"
env:
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/updatecli_update.yaml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
---
name: Updatecli - Update
on:
workflow_dispatch:
push:
branches:
- main

jobs:
updatecli:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3" # v6.0.0

- name: "Setup updatecli"
uses: "updatecli/updatecli-action@5ca36367fadc6ad94d590984fd9c696e783ec635" # v2.96.0
uses: "updatecli/updatecli-action@v2.98.0" # v2.96.0
with:
version: "v0.113.0-rc.1"

version: "v0.112.0"
- name: "Run updatecli only on existing pipelines"
run: updatecli compose apply --clean-git-branches=true --existing-only=true --experimental
env:
Expand Down