diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fe1c48b..4508099c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,9 +13,9 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Setup node ${{ env.PRIMARY_NODEJS_VERSION }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ env.PRIMARY_NODEJS_VERSION }} cache: "npm" @@ -26,9 +26,9 @@ jobs: name: Test bundle runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Setup node ${{ env.PRIMARY_NODEJS_VERSION }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ env.PRIMARY_NODEJS_VERSION }} cache: "npm" @@ -47,11 +47,16 @@ jobs: - 12.20.0 - 14.13.0 - 16 + - 18 + - 20 + - 22 + - 24 + - 26 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Setup node ${{ matrix.node_version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node_version }} cache: "npm" diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index e724ca53..cf1564fd 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -16,9 +16,9 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Setup Node.js - uses: actions/setup-node@v1 + uses: actions/setup-node@v6 with: node-version: 16 - run: npm ci --ignore-scripts