From 189dd6854a3b12ecff4a02c49351779f919933ca Mon Sep 17 00:00:00 2001 From: DavideViolante Date: Thu, 4 May 2023 08:46:06 +0200 Subject: [PATCH] Set node 18 on readme, v3.2 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fac6fff..37a74fa 100644 --- a/README.md +++ b/README.md @@ -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 }} @@ -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: @@ -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 && serverless deploy" entrypoint: /bin/sh @@ -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 ./ && serverless deploy" entrypoint: /bin/sh