diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4f4170c2..ce4c9f09 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,9 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 + with: + persist-credentials: false # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/node-aught.yml b/.github/workflows/node-aught.yml index ba087a5b..f036a86b 100644 --- a/.github/workflows/node-aught.yml +++ b/.github/workflows/node-aught.yml @@ -12,12 +12,3 @@ jobs: range: '< 10' type: minors command: npm run tests-only - - node: - permissions: - contents: none - name: 'node < 10' - needs: [tests] - runs-on: ubuntu-latest - steps: - - run: 'echo tests completed' diff --git a/.github/workflows/node-tens.yml b/.github/workflows/node-tens.yml index 6855a6dc..a7045573 100644 --- a/.github/workflows/node-tens.yml +++ b/.github/workflows/node-tens.yml @@ -12,12 +12,3 @@ jobs: range: '>= 10' type: minors command: npm run tests-only - - node: - permissions: - contents: none - name: 'node >= 10' - needs: [tests] - runs-on: ubuntu-latest - steps: - - run: 'echo tests completed' diff --git a/.github/workflows/ses.yml b/.github/workflows/ses.yml index e2cd5c40..da3d9813 100644 --- a/.github/workflows/ses.yml +++ b/.github/workflows/ses.yml @@ -13,6 +13,8 @@ jobs: fail-fast: false matrix: node-version: + - '23' + - '22' - '20' - '18' - '16' @@ -20,13 +22,15 @@ jobs: - '12' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + with: + persist-credentials: false - uses: ljharb/actions/node/install@main name: 'nvm install ${{ matrix.node-version }} && npm install' with: node-version: ${{ matrix.node-version }} - run: npm run test:ses - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v3.1.5 SES: permissions: @@ -34,4 +38,4 @@ jobs: needs: [tests] runs-on: ubuntu-latest steps: - - run: 'echo tests completed' + - run: true