From 169a637aa33bc86d53e9b80cd9da1709e7a5f2ac Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Mon, 31 Oct 2022 12:18:25 -0400 Subject: [PATCH] use setup action in deploy workflow --- .github/workflows/deploy.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b3946fb48..588b99c4f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,12 +16,6 @@ jobs: if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - name: Install container dependencies - run: | - sudo apt-get update \ - && sudo apt-get install -y --no-install-recommends \ - libcurl4-openssl-dev - - uses: actions/checkout@v3 with: fetch-depth: 2 @@ -48,11 +42,7 @@ jobs: TF_VAR_cf_password: ${{ secrets.CLOUDGOV_PASSWORD }} run: terraform apply -auto-approve -input=false - - name: Set up Python 3.9 - uses: actions/setup-python@v3 - with: - python-version: "3.9" - + - uses: ./.github/actions/setup-project - name: Install application dependencies run: make bootstrap