summaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-05-10 00:45:01 +0200
committerGitHub <[email protected]>2022-05-10 00:45:01 +0200
commit4287d8f1cc0eb4a575c8155f32041e38cb039ae7 (patch)
treed68e88ce92a3da9820b72aba0657a20138d19d60 /.github/workflows/release.yml
parentf72f698343c5dd9626b953ca50be66230c35eddd (diff)
parent87c04f81e5fb76faeb0c5a1f996d28d90aa5aa2b (diff)
Merge branch 'master' into dependabot/github_actions/docker/setup-buildx-action-2
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e81213ef..ca1c4a82 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -148,19 +148,19 @@ jobs:
uses: actions/checkout@v3
- name: Set up QEMU
- uses: docker/setup-qemu-action@v1 # Action page: <https://github.com/docker/setup-qemu-action>
+ uses: docker/setup-qemu-action@v2 # Action page: <https://github.com/docker/setup-qemu-action>
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 # Action page: <https://github.com/docker/setup-buildx-action>
- name: Login to Docker Hub
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_LOGIN }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to GitHub Container Registry
- uses: docker/login-action@v1
+ uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.GHCR_LOGIN }}