summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2022-03-08 12:53:16 -0500
committerGitHub <noreply@github.com>2022-03-08 12:53:16 -0500
commit00ecdf7c4b5e5a5ee5dfea1392cec2d60d2e932b (patch)
treeb5079b29f2f27caf762b3301e05011ee8c165a75 /.github/workflows
parentfdab074ae60745140c8761e8a30694cc91aea8c7 (diff)
parentbd74aae7615708c3703d85175d14714fbe53e0c3 (diff)
Merge pull request #1332 from hairyhenderson/dependabot/github_actions/docker/login-action-1.14.1
Bump docker/login-action from 1.13.0 to 1.14.1
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docker.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 3856b03b..0ef1c086 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -54,14 +54,14 @@ jobs:
docker buildx imagetools create --dry-run -t localhost:5000/gomplate:dev-alpine localhost:5000/gomplate:alpine
if: github.repository != 'hairyhenderson/gomplate' || (github.ref != 'refs/heads/master' && env.is_tag != 'true')
- name: Login to GHCR
- uses: docker/login-action@v1.13.0
+ uses: docker/login-action@v1.14.1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
if: github.repository == 'hairyhenderson/gomplate' && (github.ref == 'refs/heads/master' || env.is_tag == 'true')
- name: Login to DockerHub
- uses: docker/login-action@v1.13.0
+ uses: docker/login-action@v1.14.1
with:
# NOTE: DOCKERHUB_TOKEN and DOCKERHUB_USERNAME must be present in https://github.com/hairyhenderson/gomplate/settings
username: ${{ secrets.DOCKERHUB_USERNAME }}