From 5eb6be12aea49ca3e97d82d7983e9d11f4134cdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Dec 2025 19:05:28 +0000 Subject: [PATCH] build(deps): bump the gh-actions group across 1 directory with 3 updates Bumps the gh-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6.0.0...v6.0.1) Updates `actions/setup-node` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6.0.0...v6.1.0) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gh-actions - dependency-name: actions/setup-node dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/api.yml | 4 ++-- .github/workflows/gh-pages.yml | 8 ++++---- .github/workflows/lint.yml | 4 ++-- .github/workflows/publish-nightly.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 2e4975d5..42717b1d 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - name: Setup Node.js - uses: actions/setup-node@v6.0.0 + uses: actions/setup-node@v6.1.0 with: node-version: 20.x diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index d1390df0..4e45cd06 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -12,15 +12,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - name: Setup Node.js - uses: actions/setup-node@v6.0.0 + uses: actions/setup-node@v6.1.0 with: node-version: 20.x - name: AiScript Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} @@ -33,7 +33,7 @@ jobs: run: npm run build - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: npm-playground-${{ hashFiles('playground/package-lock.json') }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d8c9f7be..61c427a4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - name: Setup Node.js - uses: actions/setup-node@v6.0.0 + uses: actions/setup-node@v6.1.0 with: node-version: 20.x diff --git a/.github/workflows/publish-nightly.yml b/.github/workflows/publish-nightly.yml index 554a80f5..91e716ed 100644 --- a/.github/workflows/publish-nightly.yml +++ b/.github/workflows/publish-nightly.yml @@ -12,7 +12,7 @@ jobs: matrix: ${{ steps.getb.outputs.matrix }} steps: - name: Checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 with: fetch-depth: 0 @@ -46,17 +46,17 @@ jobs: steps: - name: Checkout ${{ matrix.branch }} - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 with: ref: ${{ matrix.branch }} - name: Setup Node.js - uses: actions/setup-node@v6.0.0 + uses: actions/setup-node@v6.1.0 with: node-version: 20.x - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27028884..1cdcc016 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6.0.0 + uses: actions/checkout@v6.0.1 - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v6.0.0 + uses: actions/setup-node@v6.1.0 with: node-version: ${{ matrix.node-version }}