Skip to content

Commit

Permalink
bump action
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed May 4, 2024
1 parent 1162643 commit 14cb5f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: 'pnpm'
Expand All @@ -21,7 +21,7 @@ jobs:
- run: pnpm test
- run: pnpm build
- run: pnpm package
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist/
Expand All @@ -33,7 +33,7 @@ jobs:
os: [ubuntu, macos, windows]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
- name: "Install default channel on ${{ matrix.os }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- uses: google-github-actions/release-please-action@v4
id: release

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: 'latest'
if: ${{ steps.release.outputs.release_created }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
if: ${{ steps.release.outputs.release_created }}
Expand Down

0 comments on commit 14cb5f3

Please sign in to comment.