aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-28 12:13:11 +0100
committerLibravatar GitHub <noreply@github.com>2023-09-28 12:13:11 +0100
commitaea5170b710e3de6742866ab597411fd24458291 (patch)
tree4145df7e19ccfded7718b3fc91908945e0e1c805
parentBump actions/checkout from 3 to 4 (#69) (diff)
downloadferdium-server-aea5170b710e3de6742866ab597411fd24458291.tar.gz
ferdium-server-aea5170b710e3de6742866ab597411fd24458291.tar.zst
ferdium-server-aea5170b710e3de6742866ab597411fd24458291.zip
Bump docker/login-action from 2 to 3 (#72)
Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-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 69e87e2..9aab98f 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -83,7 +83,7 @@ jobs:
83 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}} 83 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}}
84 - 84 -
85 name: Login to GitHub Container Registry 85 name: Login to GitHub Container Registry
86 uses: docker/login-action@v2 86 uses: docker/login-action@v3
87 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}} 87 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}}
88 with: 88 with:
89 registry: ghcr.io 89 registry: ghcr.io
@@ -91,7 +91,7 @@ jobs:
91 password: ${{ secrets.GITHUB_TOKEN }} 91 password: ${{ secrets.GITHUB_TOKEN }}
92 - 92 -
93 name: Login to DockerHub 93 name: Login to DockerHub
94 uses: docker/login-action@v2 94 uses: docker/login-action@v3
95 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}} 95 if: ${{ (steps.should_run.outputs.should_run != 'false') && (github.event_name != 'workflow_dispatch' || (github.event_name == 'workflow_dispatch' && (contains(github.event.inputs.message, '[main]'))) )}}
96 with: 96 with:
97 username: ${{ secrets.DOCKERHUB_USERNAME }} 97 username: ${{ secrets.DOCKERHUB_USERNAME }}