Update faker requirement from ~=25.3 to ~=26.1 in /requirements #242
Workflow file for this run
This file contains 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
# generated by https://github.com/ministryofjustice/money-to-prisoners-deploy | |
name: Clean ECR | |
on: | |
pull_request: | |
# clean up branch when a PR is closed | |
types: | |
- closed | |
jobs: | |
clean-ecr: | |
name: Clean ECR | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Assume IAM role to access ECR | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ vars.ECR_REGION }} | |
role-to-assume: ${{ secrets.ECR_ROLE_TO_ASSUME }} | |
- name: Delete branch images from ECR | |
uses: ./.github/actions/clean-ecr | |
env: | |
AWS_DEFAULT_REGION: ${{ vars.ECR_REGION }} |