Skip to content

Commit

Permalink
Merge branch 'main' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
jh0ker committed Feb 26, 2024
2 parents ac6bf09 + e945139 commit b37620f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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@v4

- 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@v4

- 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
2 changes: 1 addition & 1 deletion scraper/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package:
provider:
name: aws
region: eu-central-1
runtime: nodejs14.x
runtime: nodejs20.x
stage: ${env:STAGE}
lambdaHashingVersion: 20201221
environment:
Expand Down

0 comments on commit b37620f

Please sign in to comment.