diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fce024..42b782b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,9 @@ jobs: matrix: node-version: ["24", "25"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }}.x cache: "npm" @@ -39,14 +39,14 @@ jobs: package-manager: ["npm", "yarn", "pnpm"] steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install pnpm uses: pnpm/action-setup@v6 if: matrix.package-manager == 'pnpm' with: version: "10" - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24.x cache: "npm" @@ -83,14 +83,14 @@ jobs: env: NODE_DEBUG: create-ts-node steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: pnpm/action-setup@v6 name: Install pnpm if: matrix.package-manager == 'pnpm' with: version: "10" - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: ${{ matrix.node-version }}.x - run: ${{ matrix.package-manager }} install diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5028670..d633660 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,9 +12,9 @@ jobs: name: Publish package runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24 cache: "npm" @@ -36,7 +36,7 @@ jobs: version: "10" if: matrix.package-manager == 'pnpm' - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24 - name: Create project diff --git a/.github/workflows/version.yml b/.github/workflows/version.yml index 9f1cc93..4d61225 100644 --- a/.github/workflows/version.yml +++ b/.github/workflows/version.yml @@ -19,9 +19,9 @@ jobs: version: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js - uses: actions/setup-node@v6 + uses: actions/setup-node@v7 with: node-version: 24.x cache: npm