Skip to content

Bump Patcher CLI to v0.5.2 (#33) #18

Bump Patcher CLI to v0.5.2 (#33)

Bump Patcher CLI to v0.5.2 (#33) #18

Workflow file for this run

name: 'Patcher Tests'
on:
push:
branches:
- main
jobs:
patcher-report:
runs-on: ubuntu-latest
outputs:
dependencies: ${{ steps.run-report.outputs.dependencies }}
steps:
- uses: actions/checkout@v3
- name: Patcher
id: run-report
uses: ./
with:
patcher_command: report
working_dir: infrastructure-live
patcher-update:
needs: [patcher-report]
runs-on: ubuntu-latest
strategy:
matrix:
dependency: ${{ fromJson(needs.patcher-report.outputs.dependencies) }}
steps:
- uses: actions/checkout@v3
- name: Patcher
uses: ./
with:
patcher_command: update
dependency: ${{ matrix.dependency }}
working_dir: infrastructure-live