Skip to content

Commit

Permalink
update actions to lastest
Browse files Browse the repository at this point in the history
  • Loading branch information
torn4dom4n committed Dec 21, 2023
1 parent f122c02 commit 1a1c65e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ runs:
bun-version: ${{ env.VERSION }}

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
if: ${{ env.PACKAGE_MANAGER != 'bun' }}
with:
node-version: ${{ inputs.node-version }}
cache: ${{ env.PACKAGE_MANAGER }}
cache-dependency-path: "${{ inputs.path }}/${{ env.LOCKFILE }}"

- name: Setup Node (Bun)
uses: actions/setup-node@v3
uses: actions/setup-node@v4
if: ${{ env.PACKAGE_MANAGER == 'bun' }}
with:
node-version: ${{ inputs.node-version }}
Expand All @@ -93,6 +93,6 @@ runs:
$PACKAGE_MANAGER run build
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: "${{ inputs.path }}/dist/"

0 comments on commit 1a1c65e

Please sign in to comment.