Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JavanXD authored Jan 4, 2024
1 parent badcbb2 commit 57d994e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1 # this installs node and npm for us
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.1 # this installs node and npm for us
with:
node-version: '14.x'
- uses: actions/cache@v1 # this allows for re-using node_modules caching, making builds a bit faster.
node-version: '20.10.0'
- uses: actions/cache@v3.3.2 # this allows for re-using node_modules caching, making builds a bit faster.
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -25,7 +25,7 @@ jobs:

# push the /dist folder to your repo
- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v9.1.3
with:
default_author: github_actions
message: 'Updating /dist'
Expand Down

0 comments on commit 57d994e

Please sign in to comment.