From 87837f1ebdd40a51cab21d0f184e6be9391362b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 09:40:55 +0000 Subject: [PATCH] Bump the dependencies group across 1 directory with 3 updates Bumps the dependencies group with 3 updates in the / directory: [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [JamesIves/github-pages-deploy-action](https://github.com/jamesives/github-pages-deploy-action). Updates `prefix-dev/setup-pixi` from 0.9.2 to 0.9.3 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](https://github.com/prefix-dev/setup-pixi/compare/v0.9.2...v0.9.3) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `JamesIves/github-pages-deploy-action` from 4.7.3 to 4.7.4 - [Release notes](https://github.com/jamesives/github-pages-deploy-action/releases) - [Commits](https://github.com/jamesives/github-pages-deploy-action/compare/v4.7.3...v4.7.4) --- updated-dependencies: - dependency-name: prefix-dev/setup-pixi dependency-version: 0.9.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: JamesIves/github-pages-deploy-action dependency-version: 4.7.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/dev.yml | 2 +- .github/workflows/doc.yml | 6 +++--- .github/workflows/lint.yml | 8 ++++---- .github/workflows/test.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index e830704..ef0402d 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v5 with: { submodules: recursive } - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.42.1 } - run: pixi run sage -c 'import surface_dynamics' - run: pixi run -e dev test-doctest diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 160060c..9e99574 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.41.2 } - name: build documentation run: | @@ -22,11 +22,11 @@ jobs: - name: detect broken links run: pixi run -e dev doc-linkcheck - name: provide documentation as artifact for netlify workflow - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: doc path: doc/build/html - - uses: JamesIves/github-pages-deploy-action@v4.7.3 + - uses: JamesIves/github-pages-deploy-action@v4.7.4 with: branch: gh-pages folder: doc/build/html diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4d7bc86..09a8d88 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,27 +12,27 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.39.0 } - run: pixi run codespell pycodestyle: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.39.0 } - run: pixi run pycodestyle ruff: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.39.0 } - run: pixi run ruff cython-lint: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.39.0 } - run: pixi run cython-lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4b6459f..dc8ef09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,7 +41,7 @@ jobs: steps: - uses: actions/checkout@v5 with: { submodules: recursive } - - uses: prefix-dev/setup-pixi@v0.9.2 + - uses: prefix-dev/setup-pixi@v0.9.3 with: { pixi-version: v0.39.0 } - run: pixi run -e ${{ matrix.environment }} test-doctest-long - run: pixi run -e ${{ matrix.environment }} test-pytest