ECR Login Token Refresh #1940
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
name: ECR Login Token Refresh | |
on: | |
workflow_dispatch: | |
# Every 6 hours, the password validity is 12 hours | |
schedule: | |
- cron: '0 */6 * * *' | |
jobs: | |
login: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: retrieve ecr password and store as secret | |
run: | | |
pip3 install -r .github/workflows/requirements.txt | |
python3 .github/workflows/ecr_password_updater.py | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_DEFAULT_REGION: us-gov-west-1 | |
GH_API_ACCESS_TOKEN: ${{ secrets.GH_API_ACCESS_TOKEN }} | |
# This 'test' job is usefull for fast debugging | |
test: | |
needs: login | |
runs-on: ubuntu-latest | |
timeout-minutes: 1 | |
container: | |
image: 008577686731.dkr.ecr.us-gov-west-1.amazonaws.com/gaimg-ruby:2.7.3-ga-browsers | |
credentials: | |
username: AWS | |
# Here is the password retrieved as a secret that is set by the `login` job | |
password: ${{ secrets.ECR_PASSWORD }} | |
steps: | |
- run: echo "Inside a container pulled from ECR!!" |