diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index ba6d1d593..da14739f5 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -13,9 +13,9 @@ jobs: node-version: [16.x, 24.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} cache: 'npm' @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Remove Node.js installed by setup-node action (if any) run: | if command -v node &> /dev/null; then @@ -47,7 +47,7 @@ jobs: fi - name: Setup Bun - uses: oven-sh/setup-bun@v1 + uses: oven-sh/setup-bun@v2 - name: Install dependencies using Bun run: bun install - name: Run end-to-end tests with Bun