From 7d60237980f25f503ca620f15d9a015d00571986 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Thu, 23 Apr 2026 18:51:36 -0700 Subject: [PATCH 1/3] CI: Update actions/checkout --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1feb09..2a34138 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -187,7 +187,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Ubuntu Native Dependencies if: ${{ contains(matrix.os, 'ubuntu') && matrix.container == '' && matrix.compiler == 'gfortran' }} From 5053295cbecbd3402b8caedacf5e8b5199cfd2f9 Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Thu, 23 Apr 2026 18:53:32 -0700 Subject: [PATCH 2/3] Rename LICENSE file --- LICENSE => LICENSE.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENSE => LICENSE.txt (100%) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt From 064bd17d5874b2b36bf3923ff3b381e5c8dfc4eb Mon Sep 17 00:00:00 2001 From: Dan Bonachea Date: Thu, 23 Apr 2026 18:55:42 -0700 Subject: [PATCH 3/3] CI: Deploy concurrency and path filtering for Action activation Reduce unnecessary churn by skipping CI Action for documentation-only changes. Also, avoid duplicate Actions on pushes to PR branches (which trigger both the `push` and `pull_request` events). Finally, cancel earlier Actions still running when a non-main branch is updated, as these are usually unneeded, and the superceded Action can even cause spurious failures after a subsequent force push orphans the source commit. --- .github/workflows/build.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a34138..db98ad4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,18 @@ name: Build -on: [push, pull_request] - +on: + push: + paths-ignore: &paths_ignore + - 'docs/**' + - '**.txt' + - '**.md' + pull_request: + paths-ignore: *paths_ignore + +concurrency: + # De-duplicate concurrent workflow runs on the same branch/ref + group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }} + cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} jobs: build: