diff --git a/.github/workflows/clojure.yml b/.github/workflows/clojure.yml index a785608..1361238 100644 --- a/.github/workflows/clojure.yml +++ b/.github/workflows/clojure.yml @@ -5,7 +5,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: "temurin" @@ -21,7 +21,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - uses: DeLaGuardo/clojure-lint-action@master continue-on-error: true with: @@ -46,11 +46,16 @@ jobs: - uses: actions/setup-node@v3 with: node-version: "20" + cache: "yarn" + + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install + - name: Build Project run: yarn build - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@releases/v3 + uses: JamesIves/github-pages-deploy-action@releases/v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: resources/public # The folder the action should deploy. + folder: resources/public # The folder the action should deploy.