From eeccde7254ecc6409b8b9a449dde89ad9c1f5464 Mon Sep 17 00:00:00 2001 From: KIMBtech Date: Sat, 30 Mar 2024 14:52:12 +0100 Subject: [PATCH] Update Build Actions https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/docker-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 513dd47..5b554f0 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -29,10 +29,10 @@ jobs: if: github.event_name != 'push' - name: Access repository contents - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: ${{ (github.event_name == 'push') || (steps.check.outputs.needs-updating == 'true') }} - name: Login to DockerHub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }}