From 1d4528855b52b551cac6bae9caa7001434ebc00b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 15:44:18 +0000 Subject: [PATCH] chore(deps): bump the actions-deps group with 6 updates Bumps the actions-deps group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [aica-technology/.github](https://github.com/aica-technology/.github) | `0.6.1` | `1.1.0` | | [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `6` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | Updates `actions/checkout` from 3 to 6 - [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/v3...v6) 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) Updates `aica-technology/.github` from 0.6.1 to 1.1.0 - [Release notes](https://github.com/aica-technology/.github/releases) - [Commits](https://github.com/aica-technology/.github/compare/v0.6.1...v1.1.0) Updates `peaceiris/actions-gh-pages` from 3 to 4 - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-gh-pages/compare/v3...v4) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v6) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: aica-technology/.github dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: peaceiris/actions-gh-pages dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/build-docs.yml | 14 +++++++------- .github/workflows/bundle-schema.yml | 6 +++--- .github/workflows/check-python.yml | 6 +++--- .github/workflows/publish-to-pypi.yml | 10 +++++----- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 3fa152be7..098f3b7f2 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -9,11 +9,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 # Build Docusaurus - name: Cache Bun dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.bun/install/cache key: ${{ runner.os }}-bun-docs-${{ hashFiles('docs/bun.lock') }} @@ -21,7 +21,7 @@ jobs: ${{ runner.os }}-bun-docs- - name: Cache docusaurus - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | docs/.docusaurus @@ -48,11 +48,11 @@ jobs: bun run --cwd docs build # Fetch API documentation - - uses: aica-technology/.github/.github/actions/login-to-ghcr@v0.6.1 + - uses: aica-technology/.github/.github/actions/login-to-ghcr@v1.1.0 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: aica-technology/.github/.github/actions/ghcr-ensure-prefix@v0.6.1 + - uses: aica-technology/.github/.github/actions/ghcr-ensure-prefix@v1.1.0 id: ensure-image with: image_name: aica-technology/api-server-docs @@ -69,7 +69,7 @@ jobs: mkdir -p docs/build/api - name: Extract Swagger from the built image - uses: aica-technology/.github/.github/actions/docker-extract@v0.6.1 + uses: aica-technology/.github/.github/actions/docker-extract@v1.1.0 with: image: ${{ steps.ensure-image.outputs.image_name }}:${{ steps.api-version.outputs.version }} source: / @@ -78,7 +78,7 @@ jobs: # Deploy to GitHub Pages - name: Deploy if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref_name == 'main') - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: docs/build diff --git a/.github/workflows/bundle-schema.yml b/.github/workflows/bundle-schema.yml index 9b0808b93..0000e442f 100644 --- a/.github/workflows/bundle-schema.yml +++ b/.github/workflows/bundle-schema.yml @@ -15,7 +15,7 @@ jobs: branch_name: ${{ steps.branch-name.outputs.branch_name }} steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Create new branch id: branch-name shell: bash @@ -47,7 +47,7 @@ jobs: name: Bundle the ${{ matrix.schema }} schema steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v6 - uses: ./.github/actions/bundle-schema with: schema-path: ${{ matrix.schema-path }}/${{ matrix.schema }}.schema.json @@ -59,7 +59,7 @@ jobs: needs: [setup, bundle-schemas] steps: - name: Checkout branch ${{ needs.setup.outputs.branch_name }} - uses: actions/checkout@v3 + uses: actions/checkout@v6 with: ref: ${{ needs.setup.outputs.branch_name }} - name: Create pull request on branch ${{ needs.setup.outputs.branch_name }} diff --git a/.github/workflows/check-python.yml b/.github/workflows/check-python.yml index 16e1dd211..a249e3cb1 100644 --- a/.github/workflows/check-python.yml +++ b/.github/workflows/check-python.yml @@ -12,13 +12,13 @@ jobs: run: working-directory: python steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.x" - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: "0.9.2" - name: Vet code diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index f55054a8f..ac3e3560b 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -16,7 +16,7 @@ jobs: version: ${{ steps.versions.outputs.new_version }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 with: fetch-depth: 2 - id: versions @@ -27,7 +27,7 @@ jobs: PREV_VERSION=$(grep -m 1 version ./python/pyproject.toml | tr -s ' ' | tr -d '"' | tr -d "'" | cut -d' ' -f3) echo "prev_version=${PREV_VERSION}" >> $GITHUB_OUTPUT shell: bash - - uses: aica-technology/.github/.github/actions/compare-versions@v0.11.0 + - uses: aica-technology/.github/.github/actions/compare-versions@v1.1.0 id: check with: previous_version: ${{ steps.versions.outputs.prev_version }} @@ -41,13 +41,13 @@ jobs: run: working-directory: python steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v6 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: "3.x" - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: "0.9.2" - name: Build a binary wheel and a source tarball