From 82abf6880a7275569cf90b466a0ead5836927e8d Mon Sep 17 00:00:00 2001 From: Kelvin Clement Mwinuka Date: Mon, 8 Jul 2024 19:41:57 +0800 Subject: [PATCH] Use docker/login-action@v3 for login to DockerHub --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6776b06b..73624535 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,12 +41,12 @@ jobs: - name: Checkout the repo uses: actions/checkout@v4 - name: Login to DockerHub - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} - name: Login to the Container Registry - uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}