From 22b4d830e5b379ee3ba3ea428e7b2f7920cf4f8d Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Thu, 9 Apr 2026 14:22:11 +0200 Subject: [PATCH] chore: upgrade docker actions to Node.js 24 (login-action@v4, build-push-action@v7) --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7743645..b8685c7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,14 +35,14 @@ jobs: - uses: actions/checkout@v5 - name: Log in to GHCR - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: push: true tags: ghcr.io/${{ github.repository }}:latest