From 8f3fda3f9438a040d1a970b28a484a822b26c880 Mon Sep 17 00:00:00 2001 From: DavideViolante Date: Mon, 21 Jun 2021 23:21:33 +0200 Subject: [PATCH 1/3] Push v1 branch with serverless v1.x --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ceb5f1..5b037bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,5 @@ LABEL "com.github.actions.description"="Wraps the Serverless Framework to enable LABEL "com.github.actions.icon"="zap" LABEL "com.github.actions.color"="red" -RUN npm i -g serverless@2.x +RUN npm i -g serverless@1.x ENTRYPOINT ["serverless"] From b4bee827f27b2715bc5de38b78de1ef77917735d Mon Sep 17 00:00:00 2001 From: DavideViolante Date: Mon, 21 Jun 2021 23:23:15 +0200 Subject: [PATCH 2/3] Change readme usage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f67398..9bdffa1 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ jobs: node-version: ${{ matrix.node-version }} - run: npm ci - name: serverless deploy - uses: serverless/github-action@master + uses: serverless/github-action@v1 with: args: deploy env: From dc0cd9edecafe0d99343ee2d3404d8923fb23ddf Mon Sep 17 00:00:00 2001 From: DavideViolante Date: Thu, 3 Feb 2022 16:12:58 +0100 Subject: [PATCH 3/3] Add node v16 to matrix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bdffa1..aa8ec96 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}