From ab1fbd0da8edbc7580c9e982aa558838149e41b8 Mon Sep 17 00:00:00 2001 From: Edgar Orendain Date: Wed, 7 Feb 2024 03:22:37 -0800 Subject: [PATCH] Update the version of Node the action runs on from Node 16 to Node 20. Resolves https://github.com/bufbuild/buf-setup-action/issues/182 --- .github/workflows/ci.yaml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 502ca60..5e67492 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - name: Generate run: make generate && make checkgenerate - name: Build diff --git a/action.yml b/action.yml index 3a9a67c..6e1b5b0 100644 --- a/action.yml +++ b/action.yml @@ -23,5 +23,5 @@ inputs: required: false default: 'buf.build' runs: - using: "node16" + using: "node20" main: "./dist/main.js"