From 22941f94904dc4ee841f10c3905264bc1a9a5dee Mon Sep 17 00:00:00 2001 From: DL6ER Date: Mon, 23 Jan 2023 21:06:11 +0100 Subject: [PATCH] Update .github/workflows/openapi-validator.yml to account for "Node.js 12 actions are deprecated" warnings Signed-off-by: DL6ER --- .github/workflows/openapi-validator.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/openapi-validator.yml b/.github/workflows/openapi-validator.yml index c4d8f34f..26fa7708 100644 --- a/.github/workflows/openapi-validator.yml +++ b/.github/workflows/openapi-validator.yml @@ -12,12 +12,12 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.3.0 - name: Set Node.js version - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: "19.x" + node-version: "18" - name: Install npm dependencies run: npm ci