Skip to content

Commit

Permalink
chore(ci): update dependent actions in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ueokande committed Jul 23, 2024
1 parent 8c22321 commit 44696c7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
Expand All @@ -19,7 +19,7 @@ jobs:
- run: npm run lint
- run: npm run build
- run: npm run package
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist/
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: google-github-actions/release-please-action@v3
- uses: googleapis/release-please-action@v4
id: release
with:
command: manifest

- 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 44696c7

Please sign in to comment.