diff --git a/.github/workflows/cicd-2-publish.yaml b/.github/workflows/cicd-2-publish.yaml index b346b04bd..bb77dd247 100644 --- a/.github/workflows/cicd-2-publish.yaml +++ b/.github/workflows/cicd-2-publish.yaml @@ -104,8 +104,6 @@ jobs: # just planning for now for safety and until review run: | mkdir -p ./build - echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=iams-developer-roles tf-command=apply" - make terraform env=$ENVIRONMENT stack=iams-developer-roles tf-command=apply workspace=$WORKSPACE echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=networking tf-command=apply" make terraform env=$ENVIRONMENT stack=networking tf-command=apply workspace=$WORKSPACE echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=api-layer tf-command=apply" diff --git a/.github/workflows/cicd-3-deploy.yaml b/.github/workflows/cicd-3-deploy.yaml index 66bf56c36..2c57a64c1 100644 --- a/.github/workflows/cicd-3-deploy.yaml +++ b/.github/workflows/cicd-3-deploy.yaml @@ -133,8 +133,6 @@ jobs: # just planning for now for safety and until review run: | mkdir -p ./build - echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=iams-developer-roles tf-command=apply" - make terraform env=$ENVIRONMENT stack=iams-developer-roles tf-command=apply workspace=$WORKSPACE echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=networking tf-command=apply" make terraform env=$ENVIRONMENT stack=networking tf-command=apply workspace=$WORKSPACE echo "Running: make terraform env=$ENVIRONMENT workspace=$WORKSPACE stack=api-layer tf-command=apply" diff --git a/.github/workflows/cicd-4-test.yaml b/.github/workflows/cicd-4-test.yaml index 45aca9d26..1ada7d21c 100644 --- a/.github/workflows/cicd-4-test.yaml +++ b/.github/workflows/cicd-4-test.yaml @@ -8,9 +8,6 @@ on: required: true type: choice options: [dev, test, preprod] - revision: - description: Git revision (commit SHA or tag) - required: false jobs: listS3: @@ -21,10 +18,8 @@ jobs: contents: read steps: - - name: Checkout code + - name: Checkout uses: actions/checkout@v4 - with: - ref: ${{ inputs.revision || 'main' }} - name: Set up Python uses: actions/setup-python@v5