From 463558357c74c764a47c0ee842804b386b2263d8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2026 12:41:02 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- .github/workflows/ci.yml | 8 ++++---- .github/workflows/commitlint.yml | 4 ++-- .github/workflows/publish-tessl.yml | 6 +++--- .github/workflows/release-please.yml | 10 +++++----- .github/workflows/skill-review.yml | 4 ++-- scripts/commitlint_release_pr.sh | 4 ++-- scripts/install_commitlint.sh | 4 ++-- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a3986a..2fbc942 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,12 +21,12 @@ jobs: name: Validate skill and plugin runs-on: ubuntu-latest steps: - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 - name: Setup Tessl CLI uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" - name: Validate skill metadata run: python3 scripts/validate_skill.py skills/java-streams @@ -54,7 +54,7 @@ jobs: if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 - name: Check Tessl token id: tessl-token @@ -66,7 +66,7 @@ jobs: if: ${{ steps.tessl-token.outputs.available == 'true' }} uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" token: ${{ secrets.TESSL_TOKEN }} - name: Check fast publish dry-run diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 88818ab..b580711 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -30,12 +30,12 @@ jobs: name: Commitlint runs-on: ubuntu-latest steps: - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha || github.sha }} - - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 + - uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6 with: node-version: "24" diff --git a/.github/workflows/publish-tessl.yml b/.github/workflows/publish-tessl.yml index b56580f..8da7b7d 100644 --- a/.github/workflows/publish-tessl.yml +++ b/.github/workflows/publish-tessl.yml @@ -30,13 +30,13 @@ jobs: steps: - name: Checkout manual ref if: ${{ github.event_name == 'workflow_dispatch' }} - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: ref: ${{ inputs.ref }} - name: Checkout release tag if: ${{ github.event_name == 'release' }} - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: ref: ${{ github.event.release.tag_name }} @@ -64,7 +64,7 @@ jobs: - name: Setup Tessl CLI uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" token: ${{ secrets.TESSL_TOKEN }} - name: Validate plugin before publish diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 4684907..4125d9d 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -28,7 +28,7 @@ jobs: config-file: release-please-config.json manifest-file: .release-please-manifest.json - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 with: persist-credentials: false @@ -47,7 +47,7 @@ jobs: RELEASE_PR: ${{ steps.release.outputs.pr }} run: scripts/read_release_pr_output.sh - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 if: ${{ steps.release-pr.outputs.found == 'true' }} with: fetch-depth: 0 @@ -65,13 +65,13 @@ jobs: if: ${{ steps.release-pr.outputs.found == 'true' && steps.release-pr-tessl-token.outputs.available != 'true' }} uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" - name: Setup authenticated Tessl CLI if: ${{ steps.release-pr.outputs.found == 'true' && steps.release-pr-tessl-token.outputs.available == 'true' }} uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" token: ${{ secrets.TESSL_TOKEN }} - name: Mark release PR validation pending @@ -113,7 +113,7 @@ jobs: "Release PR validation failed" "$TARGET_URL" - - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 + - uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6 if: ${{ steps.release-pr.outputs.found == 'true' }} with: node-version: "24" diff --git a/.github/workflows/skill-review.yml b/.github/workflows/skill-review.yml index 06abed5..ec827c6 100644 --- a/.github/workflows/skill-review.yml +++ b/.github/workflows/skill-review.yml @@ -29,7 +29,7 @@ jobs: env: TESSL_TOKEN_AVAILABLE: ${{ secrets.TESSL_TOKEN != '' }} steps: - - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6 - name: Skip review when Tessl token is unavailable if: ${{ env.TESSL_TOKEN_AVAILABLE != 'true' }} @@ -39,7 +39,7 @@ jobs: if: ${{ env.TESSL_TOKEN_AVAILABLE == 'true' }} uses: tesslio/setup-tessl@25ec223fc0da33b41b8044ff5ab2b85235f4f91e # v2 with: - version: "0.85.0" + version: "0.93.0" token: ${{ secrets.TESSL_TOKEN }} - name: Review skill diff --git a/scripts/commitlint_release_pr.sh b/scripts/commitlint_release_pr.sh index a87b435..bf491c8 100755 --- a/scripts/commitlint_release_pr.sh +++ b/scripts/commitlint_release_pr.sh @@ -21,8 +21,8 @@ mkdir -p "$commitlint_home" printf '{"private":true}\n' > "$commitlint_home/package.json" cp commitlint.config.cjs "$commitlint_home/commitlint.config.cjs" npm --prefix "$commitlint_home" install --silent --ignore-scripts \ - @commitlint/cli@21.0.2 \ - @commitlint/config-conventional@21.0.2 + @commitlint/cli@21.2.1 \ + @commitlint/config-conventional@21.2.0 commitlint_bin="$commitlint_home/node_modules/.bin/commitlint" commitlint_config="$commitlint_home/commitlint.config.cjs" diff --git a/scripts/install_commitlint.sh b/scripts/install_commitlint.sh index 841217b..bc16b09 100755 --- a/scripts/install_commitlint.sh +++ b/scripts/install_commitlint.sh @@ -6,8 +6,8 @@ mkdir -p "$commitlint_home" printf '{"private":true}\n' > "$commitlint_home/package.json" cp commitlint.config.cjs "$commitlint_home/commitlint.config.cjs" npm --prefix "$commitlint_home" install --silent --ignore-scripts \ - @commitlint/cli@21.0.2 \ - @commitlint/config-conventional@21.0.2 + @commitlint/cli@21.2.1 \ + @commitlint/config-conventional@21.2.0 { echo "COMMITLINT_BIN=$commitlint_home/node_modules/.bin/commitlint"