From 4ee7fc86714cf884459205ef0ce261bdad86e61c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20T=C3=A9treault-Pinard?= Date: Mon, 12 Jun 2023 15:43:20 -0400 Subject: [PATCH] update `lint.yml` --- .github/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a2c5b27..b2b7685 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,12 +4,12 @@ on: [push, pull_request] jobs: test: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: - node-version: '12.x' - - run: npm install -g markdownlint-cli@0.23.2 + node-version: '18' + - run: npm install -g markdownlint-cli - run: markdownlint '**/*.md' --ignore node_modules