From 5cfb9474b3b013ecd158f97eae60df6fbc42afab Mon Sep 17 00:00:00 2001 From: Matteo Franci Date: Fri, 9 Feb 2024 21:27:13 +0100 Subject: [PATCH] Aggiornamento action checkout v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Github sta incoraggiando ad upgradare tutti i workflow ad azioni che usano node 20 entro aprile 2024. Per quanto riguarda la github checkout action รจ necessario aggiornare la versione almeno alla 4. https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. --- .github/workflows/docker-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 57383ce..a313b3f 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -15,8 +15,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Build Docker Image run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin && make release - \ No newline at end of file +