From 5bc406161dd60a5ce001c3e6d091471005791204 Mon Sep 17 00:00:00 2001 From: ctmbl Date: Tue, 21 May 2024 13:25:25 +0200 Subject: [PATCH] Update checkout, download-artifact and upload-artifact Actions version to use Node.js 2 --- .github/workflows/build_and_deploy.yml | 8 ++++---- .github/workflows/deploy_dev.yml | 2 +- .github/workflows/pytest.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index e0a6f06..5f99018 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -27,7 +27,7 @@ jobs: # Checkout repo AND ITS SUBMODULES - name: 🛒 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive @@ -38,7 +38,7 @@ jobs: # Upload build artifacts for deployment or download - name: 🚀 Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: prod-build path: ./build/blog/prod @@ -67,7 +67,7 @@ jobs: run: | mkdir -p build/blog/prod - name: 📥 Download build Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: prod-build path: build/blog/prod @@ -103,7 +103,7 @@ jobs: steps: # Checkout repo, no need to checkout submodule - name: 🛒 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Get the list of added, changed, removed, and renamed files - name: 📑 Get changed files diff --git a/.github/workflows/deploy_dev.yml b/.github/workflows/deploy_dev.yml index 669e3d3..ebf4b48 100644 --- a/.github/workflows/deploy_dev.yml +++ b/.github/workflows/deploy_dev.yml @@ -17,7 +17,7 @@ jobs: steps: # Checkout repo AND ITS SUBMODULES - name: 🛒 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 43a6132..59c5963 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -19,7 +19,7 @@ jobs: steps: # Checkout repo - name: 🛒 Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Install pytest - name: 🛠️ Install pytest