From b5b4483b0bb7ca282d44b162576c45661bc45661 Mon Sep 17 00:00:00 2001 From: Valerian Saliou Date: Tue, 26 Dec 2023 21:44:29 -0500 Subject: [PATCH] chore: bump github actions to latest --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7551d18..fa1c6eb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,12 +14,12 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: lfs: true - name: Install NodeJS - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: 20.x @@ -28,7 +28,7 @@ jobs: - name: Cache build context id: cache-node - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.npm @@ -38,7 +38,7 @@ jobs: - name: Get current revision id: current_revision - uses: pr-mpt/actions-commit-hash@v1 + uses: prompt/actions-commit-hash@v3 - name: Install dependencies run: npm install --no-audit @@ -50,7 +50,7 @@ jobs: run: tar -zcvf ./build-${{ steps.current_revision.outputs.short }}.tar.gz build/ - name: Upload build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ steps.current_revision.outputs.short }} Build path: ./build-${{ steps.current_revision.outputs.short }}.tar.gz @@ -63,7 +63,7 @@ jobs: steps: - name: Download build artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ needs.build.outputs.revision }} Build