From a62e94ae7e388acd387812a634feac878a0f4d46 Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 21 May 2025 01:31:06 -0400 Subject: [PATCH] [CONFIG] [Github Actions] node version upgrade --- .github/workflows/markdown-lint.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/markdown-lint.yml b/.github/workflows/markdown-lint.yml index 1b47c9ae..8ad904de 100644 --- a/.github/workflows/markdown-lint.yml +++ b/.github/workflows/markdown-lint.yml @@ -15,22 +15,14 @@ jobs: markdownlint: name: Markdown Lint runs-on: ubuntu-24.04 - - strategy: - matrix: - node-version: [22.x] - # See supported Node.js release schedule - # at https://nodejs.org/en/about/releases/ - steps: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - - name: Set up Node.js ${{ matrix.node-version }} + - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} - + node-version: 24.x - name: Install dependencies run: npm install -g markdownlint-cli