From 294b3abf20fcfe86937ad2721f0d601967a3512c Mon Sep 17 00:00:00 2001 From: "Joshua J. Berry" Date: Mon, 2 Sep 2024 13:32:09 -0400 Subject: [PATCH] Update GitHub actions per deprecation notices --- .github/workflows/ci.yml | 10 ++++++---- .github/workflows/test-release-build.yml | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f320b31..96f1396 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.x - name: Install Dependencies @@ -29,16 +29,18 @@ jobs: - name: Test run: make check-tests - name: Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: file: ./coverage/lcov.info + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Make Firefox Package (Debug) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: firefox path: dist/**/* - name: Make Chrome Package (Debug) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: chrome path: dist-chrome/**/* diff --git a/.github/workflows/test-release-build.yml b/.github/workflows/test-release-build.yml index 403905d..00b8c32 100644 --- a/.github/workflows/test-release-build.yml +++ b/.github/workflows/test-release-build.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.x - name: Install Dependencies