From de32c99551cbd2a082a3e8ac7ae8be79bd2cd2e5 Mon Sep 17 00:00:00 2001 From: leecalcote Date: Sun, 19 Nov 2023 15:17:49 -0600 Subject: [PATCH 1/2] fix: upgrade linter actions Signed-off-by: leecalcote --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 93cc867d..da494b00 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@@v4.1.1 - name: Set up Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4.0.0 with: node-version: ${{ matrix.node-version }} From a19db221e31916e250b519eebe72d489a1e8e564 Mon Sep 17 00:00:00 2001 From: leecalcote Date: Sun, 19 Nov 2023 15:20:29 -0600 Subject: [PATCH 2/2] fix: remove extra @ Signed-off-by: leecalcote --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index da494b00..9f67c83c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@@v4.1.1 + uses: actions/checkout@v4.1.1 - name: Set up Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4.0.0