From d868b2f1a559c132632229d41f4d5971a7bdc39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?aar=C3=B3n=20montoya-moraga?= Date: Thu, 30 Mar 2023 17:25:23 -0300 Subject: [PATCH] update github actions from v1 to v3 --- .github/workflows/ci-lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 5605ed95..31db4297 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -16,13 +16,13 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x] + node: [14, 16, 18] steps: - - uses: actions/checkout@v2 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node }} + uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: ${{ matrix.node }} - run: npm ci - run: npm run lint