From 64d2b051794b4f23eef5a1389bee5567faa374b9 Mon Sep 17 00:00:00 2001 From: stertooy <5571903+stertooy@users.noreply.github.com> Date: Fri, 20 Mar 2026 18:00:03 +0100 Subject: [PATCH 1/2] Update CI and README --- .github/workflows/CI.yml | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1fb92be..529528e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,8 @@ jobs: fail-fast: false matrix: gap-version: - - master + - 'devel' + - '4.15' - '4.14' - '4.13' - '4.12' diff --git a/README.md b/README.md index a66778f..66cae99 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: gap-actions/setup-gap@v3 - uses: gap-actions/build-pkg@v2 - uses: gap-actions/run-pkg-tests@v4 From 625e0bd6c72a6964a7b83c7b90a355c8e25752c5 Mon Sep 17 00:00:00 2001 From: stertooy <5571903+stertooy@users.noreply.github.com> Date: Thu, 11 Jun 2026 14:48:51 +0200 Subject: [PATCH 2/2] Update GAP & action versions --- .github/workflows/CI.yml | 3 +++ README.md | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b60237c..513e2dc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -16,12 +16,15 @@ jobs: matrix: gap-version: - 'devel' + - '4.16' - '4.15' - '4.14' - '4.13' - '4.12' - '4.11' - '4.10' + # - '4.9' + # Example package requires GAP >= 4.10 steps: # the order of the checkout actions is important because all contents of diff --git a/README.md b/README.md index 66cae99..0b96fb0 100644 --- a/README.md +++ b/README.md @@ -42,15 +42,15 @@ jobs: steps: - uses: actions/checkout@v6 - uses: gap-actions/setup-gap@v3 - - uses: gap-actions/build-pkg@v2 + - uses: gap-actions/build-pkg@v3 - uses: gap-actions/run-pkg-tests@v4 - uses: gap-actions/process-coverage@v3 - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v7 ``` The recommended configuration for `codecov/codecov-action` is as follows: ```yaml - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v7 with: fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }}