Skip to content

Commit

Permalink
💚 Upgrade versions in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jh0ker committed Feb 26, 2024
1 parent 8861d49 commit 2ddad86
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set environment variables for staging
if: endsWith(github.ref, '/main')
Expand All @@ -40,10 +40,10 @@ jobs:
echo "TEAMS_WEBHOOK=${{ secrets.TEAMS_WEBHOOK_PROD }}" >> $GITHUB_ENV
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: "npm"
cache-dependency-path: scraper/package-lock.json

- name: Install dependencies
Expand All @@ -68,10 +68,10 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set environment variables for staging
if: endsWith(github.ref, '/main')
Expand All @@ -93,10 +93,10 @@ jobs:
verbose: false

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: "npm"
cache-dependency-path: app/package-lock.json

- name: Install dependencies
Expand Down

0 comments on commit 2ddad86

Please sign in to comment.