Skip to content

Commit

Permalink
Merge pull request #40 from prose-im/master
Browse files Browse the repository at this point in the history
chore: bump github actions to latest
  • Loading branch information
valeriansaliou authored Dec 27, 2023
2 parents 3534511 + b5b4483 commit 7bf6f8b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -28,7 +28,7 @@ jobs:

- name: Cache build context
id: cache-node
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.npm
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 7bf6f8b

Please sign in to comment.