diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c065c87..dc697c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,11 @@ jobs: strategy: matrix: - node-version: [22.x, 24.x, 25.x] + node-version: [22.x, 24.x, 25.x, 26.x] fail-fast: false steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a4b7bad..0f718c4 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -29,7 +29,7 @@ jobs: steps: - name: "Checkout repository" - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: "Initialize CodeQL" uses: github/codeql-action/init@v4 diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 3489ebd..1067b3c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout Code" - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: "Setup Node.js" uses: actions/setup-node@v6 @@ -48,4 +48,4 @@ jobs: find . -name '*.json' \ -not -path './node_modules/*' \ -not -path './.git/*' \ - -print0 | xargs -0 -I{} node -e "JSON.parse(require('fs').readFileSync('{}','utf8'))" \ No newline at end of file + -print0 | xargs -0 -I{} node -e "JSON.parse(require('fs').readFileSync('{}','utf8'))" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9be5e9d..a23d348 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -34,7 +34,7 @@ jobs: steps: - name: "Checkout repository" - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # Fetch full history for potential version checks fetch-depth: 0