Skip to content

chore(deps): upgrade dependencies for this repo only #518

chore(deps): upgrade dependencies for this repo only

chore(deps): upgrade dependencies for this repo only #518

Workflow file for this run

name: "Plan"
on: [pull_request_target]
concurrency: ${{ github.workflow }}-${{ github.head_ref }}
jobs:
build-shard-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- id: set-matrix
run: |
stack=$(jq -rcM ".stacks | { stack: keys }" sharded-stacks.json)
echo "matrix=$stack" >> $GITHUB_OUTPUT
diff:
uses: ./.github/workflows/diff-cdktf-stacks.yml
needs: build-shard-matrix
with:
stacks: ${{ needs.build-shard-matrix.outputs.matrix }}
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
secrets: inherit
diff_constructs:
uses: ./.github/workflows/diff-cdktf-stacks.yml
with:
stacks: '{"stack":["custom-constructs"]}'
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
secrets: inherit