Skip to content

Commit

Permalink
Remove third party dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
johnboyes authored Jan 18, 2024
1 parent 3cd1d3e commit 898d3af
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/check_docker_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,9 @@ jobs:
runs-on: ubuntu-22.04
steps:

- name: Check Docker image with current semantic version is also tagged with latest
id: docker_semver
uses: jacobtomlinson/[email protected]
with:
org: 'agilepathway' # Docker Hub user or organisation name
repo: 'pull-request-label-checker' # Docker Hub repository name

- name: Inspect image
env:
image_ver: v1.6.13
run: |
docker pull agilepathway/pull-request-label-checker:${{ steps.docker_semver.outputs.tag }}
docker image inspect agilepathway/pull-request-label-checker:${{ steps.docker_semver.outputs.tag }} | jq -r '.[] | (.RepoTags)'
docker pull agilepathway/pull-request-label-checker:${{ env.image_ver }}
docker image inspect agilepathway/pull-request-label-checker:${{ env.image_ver }} | jq -r '.[] | (.RepoTags)'

0 comments on commit 898d3af

Please sign in to comment.