diff --git a/.github/workflows/test-on-push-and-pr.yml b/.github/workflows/test-on-push-and-pr.yml index 9616150..1c95bbb 100644 --- a/.github/workflows/test-on-push-and-pr.yml +++ b/.github/workflows/test-on-push-and-pr.yml @@ -15,7 +15,7 @@ jobs: node-version: [18, 20, 22] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build and run tests for Node.js ${{ matrix.node-version }} run: | docker build -f test/unit/Dockerfile.nodejs${{ matrix.node-version }}.x -t unit/nodejs.${{ matrix.node-version }}x . @@ -29,6 +29,6 @@ jobs: distro: [alpine, amazonlinux, centos, debian, ubuntu] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run ${{ matrix.distro }} integration tests run: DISTRO=${{ matrix.distro }} make test-integ