Updates to the Docker login v2 action, adds workflow level concurrency

This commit is contained in:
Trenton H 2022-10-12 10:30:55 -07:00
parent b13ced93ed
commit 5602031b67

View File

@ -19,6 +19,10 @@ on:
- ".github/scripts/github.py" - ".github/scripts/github.py"
- ".github/scripts/common.py" - ".github/scripts/common.py"
concurrency:
group: registry-tags-cleanup
cancel-in-progress: false
jobs: jobs:
cleanup: cleanup:
name: Cleanup Image Tags name: Cleanup Image Tags
@ -32,7 +36,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- -
name: Login to Github Container Registry name: Login to Github Container Registry
uses: docker/login-action@v1 uses: docker/login-action@v2
with: with:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}