Skip to content

Commit

Permalink
pin Serverless to a specific version
Browse files Browse the repository at this point in the history
  • Loading branch information
branberry committed May 22, 2024
1 parent 0690679 commit 07aab2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prd-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
node-version: '18.x'
- name: Install Serverless Framework
run: npm install -g serverless
run: npm install -g serverless@3
- name: Serverless AWS authentication
run: sls config credentials --provider aws --key ${{ secrets.AWS_ACCESS_KEY_ID }} --secret ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Configure AWS credentials
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-stg-ecs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
on:
push:
branches:
- "main"
- "integration"
- 'main'
- 'integration'
concurrency:
group: environment-stg-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -16,7 +16,7 @@ jobs:
with:
node-version: '18.x'
- name: Install Serverless Framework
run: npm install -g serverless
run: npm install -g serverless@3
- name: Serverless AWS authentication
run: sls config credentials --provider aws --key ${{ secrets.AWS_ACCESS_KEY_ID }} --secret ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- name: Configure AWS credentials
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ docs-worker-pool contains various triggers for release to higher environments. C
#### Installation

```shell
npm install -g serverless
npm install -g serverless@3
```

#### AWS Config
Expand Down

0 comments on commit 07aab2f

Please sign in to comment.