From 4794ae667b2be5118fc53f412678b01348e33505 Mon Sep 17 00:00:00 2001 From: Sadek Baroudi Date: Sat, 18 May 2024 03:52:33 -0700 Subject: [PATCH] attemping to fix notices from github around node 16, should be using node 20 now --- .github/workflows/firmware_build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/firmware_build.yml b/.github/workflows/firmware_build.yml index cc91d7263f..19982a7e46 100755 --- a/.github/workflows/firmware_build.yml +++ b/.github/workflows/firmware_build.yml @@ -13,7 +13,7 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ github.repository}} ref: ${{ github.ref }} @@ -21,7 +21,7 @@ jobs: run: | content=$(bash bin/fp_build.sh -l | sed s~keyboards/fingerpunch/~~| jq -Rsc '. / "\n" - [""]') content="{\"keyboard\":$content}" - echo "::set-output name=matrix::$content" + echo "matrix=$content" >> $GITHUB_OUTPUT Build: needs: gather-keyboards @@ -32,7 +32,7 @@ jobs: matrix: ${{fromJson(needs.gather-keyboards.outputs.matrix)}} steps: - name: Checkout QMK - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository}} ref: ${{ github.ref }}