♻️ Define digest explicitly to improve stability. Refactor

integration tests to use latest action from repository
This commit is contained in:
Lars Gohr
2021-09-09 20:09:15 +02:00
parent c49bdc462d
commit f0feda3054
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@master
- name: Publish to Registry
if: ${{ github.actor != 'dependabot[bot]' }}
uses: elgohr/Publish-Docker-Github-Action@master
uses: ./
with:
name: lgohr/publish-docker-github-action
username: ${{ secrets.DOCKER_USERNAME }}

View File

@@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@master
- name: Publish to Registry
if: ${{ github.actor != 'dependabot[bot]' }}
uses: elgohr/Publish-Docker-Github-Action@master
uses: ./
with:
name: docker.pkg.github.com/elgohr/publish-docker-github-action/publish-docker-github-action
username: ${{ github.actor }}

View File

@@ -1,4 +1,4 @@
FROM docker:20.10.6 as runtime
FROM docker:20.10.8@sha256:ddf0d732dcbc3e2087836e06e50cc97e21bfb002a49c7d0fe767f6c31e01d65f as runtime
LABEL "repository"="https://github.com/elgohr/Publish-Docker-Github-Action"
LABEL "maintainer"="Lars Gohr"