diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index 3273ee3..0883222 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - id: install name: Install Python, pipenv and Pipfile packages @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - id: install name: Install Python, pipenv and Pipfile packages @@ -50,7 +50,7 @@ jobs: needs: [test-python] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - id: install name: Install Python, pipenv and Pipfile packages @@ -71,7 +71,7 @@ jobs: - id: save name: Save artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-${{ github.run_number }} path: ./dist @@ -90,7 +90,7 @@ jobs: - id: fetch name: Fetch artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: build-${{ github.run_number }} path: ./dist @@ -119,7 +119,7 @@ jobs: - id: fetch name: Fetch artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: build-${{ github.run_number }} path: ./dist