From 90a5bb6db8df934b6a2f8a1754abab3efb400518 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 07:14:11 +0000 Subject: [PATCH] Bump the actions group across 2 directories with 5 updates Bumps the actions group with 1 update in the /.github/actions/create-github-release directory: [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Bumps the actions group with 4 updates in the /.github/workflows directory: [actions/cache](https://github.com/actions/cache), [actions/setup-python](https://github.com/actions/setup-python), [ai-action/setup-ollama](https://github.com/ai-action/setup-ollama) and [scientific-python/issue-from-pytest-log-action](https://github.com/scientific-python/issue-from-pytest-log-action). Updates `softprops/action-gh-release` from 3.0.0 to 3.0.2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/b4309332981a82ec1c5618f44dd2e27cc8bfbfda...3d0d9888cb7fd7b750713d6e236d1fcb99157228) Updates `actions/cache` from 5.0.5 to 6.1.0 - [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/v5.0.5...v6.1.0) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6.2.0...v6.3.0) Updates `ai-action/setup-ollama` from 2.0.54 to 2.0.62 - [Release notes](https://github.com/ai-action/setup-ollama/releases) - [Changelog](https://github.com/ai-action/setup-ollama/blob/master/CHANGELOG.md) - [Commits](https://github.com/ai-action/setup-ollama/compare/195af6b8b8de746639b2ce7ffdba1c0ae70970d8...591531fff1153f90ea7a512c1c528231856f1036) Updates `scientific-python/issue-from-pytest-log-action` from 1.5.0 to 1.6.0 - [Release notes](https://github.com/scientific-python/issue-from-pytest-log-action/releases) - [Commits](https://github.com/scientific-python/issue-from-pytest-log-action/compare/8e905db353437cda1d6a773de245343fbfc940dd...87351a8f864e969567cda22a25a2f214cbe2340f) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-version: 3.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: ai-action/setup-ollama dependency-version: 2.0.62 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: scientific-python/issue-from-pytest-log-action dependency-version: 1.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .../actions/create-github-release/action.yml | 2 +- .github/workflows/doc.yml | 10 +++---- .github/workflows/integration_tests.yml | 28 +++++++++---------- .github/workflows/package_and_test.yml | 10 +++---- 4 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/actions/create-github-release/action.yml b/.github/actions/create-github-release/action.yml index d9bc672..33abdef 100644 --- a/.github/actions/create-github-release/action.yml +++ b/.github/actions/create-github-release/action.yml @@ -47,7 +47,7 @@ runs: - name: Create Release id: create_release - uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda + uses: softprops/action-gh-release@3d0d9888cb7fd7b750713d6e236d1fcb99157228 with: body: ${{ steps.release_notes.outputs.release-notes }} files: dist/* diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 79b5cc6..56a4bc3 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -95,7 +95,7 @@ jobs: git fetch upstream --tags - name: Cache pip - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -126,14 +126,14 @@ jobs: sudo apt-get install libxcb-xinerama0 sudo apt-get install xvfb - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 name: Install Python with: python-version: '3.12' - name: Setup Ollama if: ${{ inputs.SETUP_OLLAMA }} - uses: ai-action/setup-ollama@195af6b8b8de746639b2ce7ffdba1c0ae70970d8 + uses: ai-action/setup-ollama@591531fff1153f90ea7a512c1c528231856f1036 - name: Install library if: ${{ inputs.install_dependencies_only != true }} @@ -161,7 +161,7 @@ jobs: - name: Cache doc build if: ${{ inputs.CACHE_GALLERY_EXAMPLES }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -195,7 +195,7 @@ jobs: - name: Cache pooch if: ${{ inputs.CACHE_POOCH != ''}} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 3e8f323..212020f 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -131,7 +131,7 @@ jobs: conda install pip - name: Cache pip - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -143,7 +143,7 @@ jobs: - name: Cache conda if: ${{ inputs.USE_CONDA }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -334,7 +334,7 @@ jobs: - name: Cache pooch data if: ${{ always() && inputs.CACHE_POOCH != '' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -394,7 +394,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.hyperspy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ HyperSpy test suite failed ⚠️ @@ -418,7 +418,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.rosettasciio_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ RosettaSciIO test suite failed ⚠️ @@ -438,7 +438,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.lumispy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ LumiSpy test suite failed ⚠️ @@ -458,7 +458,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.hyperspy_gui_ipywidgets_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ hyperspy_gui_ipywidgets test suite failed ⚠️ @@ -477,7 +477,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.hyperspy_gui_traitsui_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ hyperspy_gui_traitsui test suite failed ⚠️ @@ -500,7 +500,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.pyxem_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ Pyxem test suite failed ⚠️ @@ -519,7 +519,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.holospy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ holospy test suite failed ⚠️ @@ -539,7 +539,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.exspy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ exSpy test suite failed ⚠️ @@ -560,7 +560,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.kikuchipy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ kikuchipy test suite failed ⚠️ @@ -579,7 +579,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.etspy_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ etspy test suite failed ⚠️ @@ -602,7 +602,7 @@ jobs: && inputs.REPORT_FAILURE_AS_ISSUE && github.repository == 'hyperspy/hyperspy-extensions-list' && steps.atomap_tests.outcome == 'failure' - uses: scientific-python/issue-from-pytest-log-action@8e905db353437cda1d6a773de245343fbfc940dd + uses: scientific-python/issue-from-pytest-log-action@87351a8f864e969567cda22a25a2f214cbe2340f with: log-path: ${{ runner.temp }}/pytest-log.jsonl issue-title: ⚠️ atomap test suite failed ⚠️ diff --git a/.github/workflows/package_and_test.yml b/.github/workflows/package_and_test.yml index 6353f74..ca3d54b 100644 --- a/.github/workflows/package_and_test.yml +++ b/.github/workflows/package_and_test.yml @@ -72,7 +72,7 @@ jobs: git remote add upstream https://github.com/${{ inputs.ORGANISATION }}/${{ env.REPOSITORY_NAME }}.git git fetch upstream --tags - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 name: Install Python with: python-version: ${{ env.PYTHON_VERSION }} @@ -115,7 +115,7 @@ jobs: run: shell: bash -el {0} steps: - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 name: Install Python with: python-version: ${{ env.PYTHON_VERSION }} @@ -159,7 +159,7 @@ jobs: fi - name: Cache pip - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -186,7 +186,7 @@ jobs: - name: Cache pooch data if: ${{ inputs.CACHE_POOCH != '' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0 @@ -204,7 +204,7 @@ jobs: - name: Cache rosettasciio data # special case rosettasciio to cache the test data if: ${{ inputs.module_name == 'rsciio' }} - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 env: # Increase this value to reset cache CACHE_NUMBER: 0