Bump astral-sh/setup-uv from 7bbb36f4345bf059635fb6d04d0fb369ca42338e to 445689ea25e0de0a23313031f5fe577c74ae45a1 #51
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Sandbox Environment | |
on: | |
pull_request: | |
branches: [ "**" ] | |
jobs: | |
get-tg-versions: | |
permissions: | |
contents: read | |
uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-versions.yml@0.1.7 | |
build-matrix: | |
permissions: | |
contents: read | |
uses: launchbynttdata/launch-workflows/.github/workflows/reusable-github-matrix-tg.yml@0.1.7 | |
with: | |
platform_environment: sandbox | |
call-terragrunt-deploy: | |
needs: [get-tg-versions, build-matrix] | |
permissions: | |
contents: read | |
id-token: write | |
strategy: | |
fail-fast: false | |
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }} | |
uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-deploy.yml@0.1.7 | |
with: | |
tf_version: ${{ needs.get-tg-versions.outputs.tf_version }} | |
tg_version: ${{ needs.get-tg-versions.outputs.tg_version }} | |
environment: ${{ matrix.terragrunt_environment.environment }} | |
region: ${{ matrix.terragrunt_environment.region }} | |
env_id: ${{ matrix.terragrunt_environment.instance }} | |
secrets: inherit |