Skip to content

Bump actions/checkout from 2 to 4 #658

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #658

Workflow file for this run

name: Deploy to Gov PaaS
on:
workflow_dispatch:
inputs:
deploy_to_dev:
required: false
default: false
type: boolean
description: Deploy to CloudFoundry dev?
push:
paths-ignore:
- '**/README.md'
jobs:
test_and_deploy:
if: ${{ github.actor != 'dependabot[bot]' }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/deploy.yml@main
with:
app_name: ${{ github.event.repository.name }}
api: true
postgres_unit_testing: true
db_name: fsd_account_store_test
deploy_to_dev: true
run_performance_tests: true
run_e2e_tests: true
secrets:
CF_API: ${{secrets.CF_API}}
CF_ORG: ${{secrets.CF_ORG}}
CF_SPACE: ${{secrets.CF_SPACE}}
CF_USER: ${{secrets.CF_USERNAME}}
CF_PASSWORD: ${{secrets.CF_PASSWORD}}
E2E_PAT: ${{secrets.E2E_PAT}}