From 2e3ca21dd4f44e849248fb36ee91d7c44ce2a046 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Mar 2026 22:51:41 +0000 Subject: [PATCH] Update backend --- .github/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 20fe4bc..528287d 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -10,16 +10,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Login to Docker registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: postmodern.alexdaniel.org username: 'alexdaniel' password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} - name: Build and push id: docker_build - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v7 with: push: true tags: postmodern.alexdaniel.org/alexdaniel-backend:${{ github.sha }} ${{ github.ref == 'refs/heads/main' && ', postmodern.alexdaniel.org/alexdaniel-backend:latest' || '' }}