From 760a2c4bcbe376bcde01c8b406dacce7fb21405b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Vadal=C3=A0?= Date: Mon, 12 Feb 2024 23:52:03 +0100 Subject: [PATCH] Update GitHub Actions versions --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e3b8a5..a788cbc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-22.04 if: ${{ github.event.inputs.REPOSITORY_NAME == github.repository }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup dbus permissions run: sudo sh -c 'sed "s/my_username/runner/g" node-ble.conf > /etc/dbus-1/system.d/dbus.conf' - name: Release library diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b093ef5..ccdfc65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,14 +14,14 @@ jobs: name: Test Nodejs v${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup dbus permissions run: sudo sh -c 'sed "s/my_username/runner/g" node-ble.conf > /etc/dbus-1/system.d/dbus.conf' - uses: chrvadala/github-actions/nodejs-test-library-action@v1 with: NODE_VERSION: ${{ matrix.node }} - name: Publish Coveralls - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v2.2.3 with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-nodejs-v${{ matrix.node }}-${{ matrix.os }}