Skip to content

Commit

Permalink
Upgrade the action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dtdesign committed Aug 7, 2024
1 parent c747caa commit c104293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
Expand All @@ -29,13 +29,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm install
- run: npx webpack --mode development
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: development_build
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
Expand Down

0 comments on commit c104293

Please sign in to comment.