Skip to content
This repository has been archived by the owner on Dec 3, 2024. It is now read-only.

Commit

Permalink
TEMP: Switch the branch used for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelhwilliams committed Nov 12, 2024
1 parent 0f1ec32 commit 0b48ebe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# queries: ./path/to/local/query, your-org/your-repo/queries@fix/remove-pip-cache

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/copilot_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ on:

jobs:
setup:
uses: communitiesuk/funding-service-design-workflows/.github/workflows/determine-jobs.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/determine-jobs.yml@fix/remove-pip-cache
with:
environment: ${{ inputs.environment }}

pre_deploy_tests:
uses: communitiesuk/funding-service-design-workflows/.github/workflows/pre-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/pre-deploy.yml@fix/remove-pip-cache
with:
# Note - no db-name, so defaults to postgres_db
postgres_unit_testing: true
Expand All @@ -63,7 +63,7 @@ jobs:
concurrency: build-assessment-store-pack
permissions:
packages: write
uses: communitiesuk/funding-service-design-workflows/.github/workflows/package.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/package.yml@fix/remove-pip-cache
with:
version_to_build: sha-${{ github.sha }}
owner: ${{ github.repository_owner }}
Expand All @@ -72,7 +72,7 @@ jobs:
dev_deploy:
needs: [ pre_deploy_tests, paketo_build, setup ]
if: ${{ contains(fromJSON(needs.setup.outputs.jobs_to_run), 'dev') }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -89,7 +89,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || true }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || false }}
Expand All @@ -100,7 +100,7 @@ jobs:
test_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'test') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -118,7 +118,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || false }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || true }}
Expand All @@ -129,7 +129,7 @@ jobs:
uat_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, test_deploy, post_test_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'uat') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand All @@ -147,7 +147,7 @@ jobs:
secrets:
FSD_GH_APP_ID: ${{ secrets.FSD_GH_APP_ID }}
FSD_GH_APP_KEY: ${{ secrets.FSD_GH_APP_KEY }}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/post-deploy.yml@fix/remove-pip-cache
with:
run_performance_tests: ${{ inputs.run_performance_tests || false }}
run_e2e_tests_assessment: ${{ inputs.run_e2e_tests_assessment || true }}
Expand All @@ -158,7 +158,7 @@ jobs:
prod_deploy:
needs: [ dev_deploy, post_dev_deploy_tests, test_deploy, post_test_deploy_tests, uat_deploy, post_uat_deploy_tests, paketo_build, setup ]
if: ${{ always() && contains(fromJSON(needs.setup.outputs.jobs_to_run), 'prod') && (! contains(needs.*.result, 'failure') ) && (! contains(needs.*.result, 'cancelled') )}}
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@main
uses: communitiesuk/funding-service-design-workflows/.github/workflows/standard-deploy.yml@fix/remove-pip-cache
secrets:
AWS_ACCOUNT: ${{ secrets.AWS_ACCOUNT }}
with:
Expand Down

0 comments on commit 0b48ebe

Please sign in to comment.