Skip to content

Commit

Permalink
Set node 18 on readme, v3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideViolante committed May 4, 2023
1 parent 97433ad commit 189dd68
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: serverless deploy
uses: serverless/github-action@v3.1
uses: serverless/github-action@v3.2
with:
args: deploy
env:
Expand All @@ -50,7 +50,7 @@ jobs:
Change your action in this way, according to [this issue](https://github.com/serverless/github-action/issues/28), thanks to @matthewpoer:
```yaml
- name: Install Plugin and Deploy
uses: serverless/github-action@v3.1
uses: serverless/github-action@v3.2
with:
args: -c "serverless plugin install --name <plugin-name> && serverless deploy"
entrypoint: /bin/sh
Expand All @@ -60,7 +60,7 @@ Change your action in this way, according to [this issue](https://github.com/ser
Change your action in this way, according to [this issue](https://github.com/serverless/github-action/issues/53#issuecomment-1059839383), thanks to @nikhuber:
```yaml
- name: Enter dir and deploy
uses: serverless/github-action@v3.1
uses: serverless/github-action@v3.2
with:
args: -c "cd ./<your-dir> && serverless deploy"
entrypoint: /bin/sh
Expand Down

0 comments on commit 189dd68

Please sign in to comment.