Skip to content

Commit

Permalink
Fix workflows (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmydell authored Jul 18, 2022
1 parent 6971306 commit 7954de8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.72.0'
hugo-version: '0.75.0'
extended: true
- name: Setup Go
uses: actions/setup-go@v2
Expand All @@ -29,7 +29,7 @@ jobs:
node-version: '12.x'

- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/deploy1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: '0.72.0'
hugo-version: '0.75.0'
extended: true

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18.0
go-version: '1.18.0'

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '16'

- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 7954de8

Please sign in to comment.