Skip to content

Commit

Permalink
#122 This PR fixes github action steps version upgrade (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
parulgupta26 authored Oct 2, 2022
1 parent 3d517dc commit a7ee033
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16 # Need for npm >=7.7
cache: 'npm'

- name: Cache dependencies
id: npm-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ jobs:

steps:
- name: Checkout git repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_PAT }}

- name: Install Node and NPM
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'

- name: Cache dependencies
id: npm-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ./node_modules
key: npm-full-modules-${{ hashFiles('package-lock.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typechecking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16 # Need for npm >=7.7
cache: 'npm'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-electron-vendors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16 # Need for npm >=7.7
cache: 'npm'
Expand Down

0 comments on commit a7ee033

Please sign in to comment.