diff --git a/.github/workflows/example-node-versions.yml b/.github/workflows/example-node-versions.yml index a9cfe927d..7d8272a54 100644 --- a/.github/workflows/example-node-versions.yml +++ b/.github/workflows/example-node-versions.yml @@ -14,17 +14,17 @@ jobs: strategy: matrix: node: [14, 16, 18] - name: E2E on Node v${{ matrix.node }} + name: Cypress v9 E2E on Node v${{ matrix.node }} steps: - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - run: node -v - run: npm -v - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Hmm, should we rebuild the "dist" before using the action? @@ -40,17 +40,17 @@ jobs: strategy: matrix: node: [14, 16, 18] - name: E2E on Node v${{ matrix.node }} + name: Cypress v10 E2E on Node v${{ matrix.node }} steps: - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - run: node -v - run: npm -v - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Hmm, should we rebuild the "dist" before using the action? diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe2650d8c..5d10b07a7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,9 +13,9 @@ jobs: name: Test on Node v${{ matrix.node }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node }} - uses: bahmutov/npm-install@v1 @@ -33,7 +33,7 @@ jobs: if: github.ref == 'refs/heads/master' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - uses: bahmutov/npm-install@v1 # https://github.com/cycjimmy/semantic-release-action - name: Semantic Release