Skip to content

Commit 8891bee

Browse files
dependabot[bot]james-d-mitchell
authored andcommitted
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `mamba-org/setup-micromamba` from 1 to 2 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](mamba-org/setup-micromamba@v1...v2) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: mamba-org/setup-micromamba dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fad3e73 commit 8891bee

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ jobs:
44
codespell:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- uses: codespell-project/actions-codespell@v2.1

.github/workflows/doc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
CXX: "ccache ${{ matrix.compiler }}"
2626
CXXFLAGS: "-O2 -g"
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- name: "Create micromamba environment"
30-
uses: mamba-org/setup-micromamba@v1
30+
uses: mamba-org/setup-micromamba@v2
3131
with:
3232
environment-name: libsemigroups
3333
create-args: >-

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
CXX: "ccache ${{ matrix.compiler }}"
2828
CXXFLAGS: "-O2 -g"
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: "Create micromamba environment"
32-
uses: mamba-org/setup-micromamba@v1
32+
uses: mamba-org/setup-micromamba@v2
3333
with:
3434
environment-name: libsemigroups
3535
create-args: >-

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
os: [ubuntu-latest, ubuntu-24.04-arm, macos-13, macos-14]
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
# Used to host cibuildwheel
2828
- name: Build wheel
@@ -38,7 +38,7 @@ jobs:
3838
name: Make source distribution
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
- name: Install libsemigroups
4343
run: source etc/make-libsemigroups.sh && sudo make install
4444
- name: Build SDist
@@ -67,7 +67,7 @@ jobs:
6767

6868
steps:
6969
- name: Download wheels and sdist artifacts
70-
uses: actions/download-artifact@v4
70+
uses: actions/download-artifact@v5
7171
with:
7272
# Here, we could specify a name of an artifact, or a pattern that
7373
# matches the names of artifacts. However, by not specifying these

0 commit comments

Comments
 (0)