Skip to content

Commit

Permalink
Update gha actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kbinani committed May 11, 2024
1 parent d0e46e1 commit 18d8f92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache docker image
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-docker-image
with:
path: ${{ env.JE2BE_DOCKER_CACHE_PATH }}
Expand All @@ -27,15 +27,15 @@ jobs:
runs-on: ubuntu-latest
needs: [docker]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: yarn
- name: Cache docker image
uses: actions/cache@v3
uses: actions/cache@v4
id: cache-docker-image
with:
path: ${{ env.JE2BE_DOCKER_CACHE_PATH }}
Expand All @@ -50,7 +50,7 @@ jobs:
make all
- name: Deploy
if: github.ref_type == 'tag'
uses: burnett01/rsync-deployments@5.2.1
uses: burnett01/rsync-deployments@7.0.1
with:
switches: -avc --delete
path: public/
Expand Down

0 comments on commit 18d8f92

Please sign in to comment.