Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: codespell-project/actions-codespell@v2
4 changes: 2 additions & 2 deletions .github/workflows/config_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Output g++ version . . .
run: g++ --version
- name: Install micromamba environment from environment.yml . . .
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
without-intrinsics: ""

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Output g++ version . . .
run: g++ --version
- name: Install GAP and clone/compile necessary packages . . .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- cpplint
steps:
- name: Check out the repository . . .
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Python . . .
uses: actions/setup-python@v6
- name: Install ${{ matrix.linter }} with pip . . .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: compile and upload manual
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install TeX Live . . .
run: |
packages=(
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:


steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: gap-actions/setup-cygwin@v2
if: ${{ runner.os == 'Windows' }}
- name: Output g++ version . . .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: gap-actions/setup-gap@v3
with:
gap-version: latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
pkgs-to-build: io* orb* datastructures* profiling* grape*

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Output g++ version . . .
run: g++ --version
- name: "Install GAP . . ."
Expand All @@ -67,7 +67,7 @@ jobs:
cd ${GAPROOT}/pkg
../bin/BuildPackages.sh --strict ${{ matrix.pkgs-to-build }}
- name: "Install digraphs-lib . . ."
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: digraphs/digraphs-lib
path: digraphs-lib
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
name: Ubuntu / GAP stable-4.15 / valgrind
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Output g++ version . . ."
run: g++ --version
- name: "Install Valgrind . . ."
Expand Down
Loading