[geos-commits] [SCM] GEOS branch 3.14 updated. a2e484ca26a8c2a896452f0d8247c4b83e08f4e2

git at osgeo.org git at osgeo.org
Sun Mar 22 17:05:08 PDT 2026


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, 3.14 has been updated
       via  a2e484ca26a8c2a896452f0d8247c4b83e08f4e2 (commit)
      from  2b48c043c11a15beb8d2e0ca4efe004be171bd42 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a2e484ca26a8c2a896452f0d8247c4b83e08f4e2
Author: Mike Taves <mwtoews at gmail.com>
Date:   Mon Mar 23 13:04:29 2026 +1300

    CI: update various GitHub Actions

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c1741a25f..735dbddbc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -189,10 +189,10 @@ jobs:
         echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: Retrieve build cache
-      uses: actions/cache/restore at v4
+      uses: actions/cache/restore at v5
       id: restore-cache
       with:
         path: .ccache
@@ -221,7 +221,7 @@ jobs:
         ccache --show-stats
 
     - name: Save build cache
-      uses: actions/cache/save at v4
+      uses: actions/cache/save at v5
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -243,7 +243,7 @@ jobs:
 
     - name: 'Upload Valgrind Log'
       if: failure()
-      uses: actions/upload-artifact at v4
+      uses: actions/upload-artifact at v7
       with:
         name: valgrind-log
         path: build/Testing/Temporary/MemoryChecker.**.log
@@ -276,7 +276,7 @@ jobs:
 
     steps:
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: 'Setup'
       uses: msys2/setup-msys2 at v2
@@ -291,7 +291,7 @@ jobs:
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v4
+      uses: actions/cache/restore at v5
       with:
         path: .ccache
         key: windows-mingw-${{ matrix.build_type}}-${{ github.ref_name }}-${{ github.run_id }}
@@ -313,7 +313,7 @@ jobs:
         ccache --show-stats --verbose
 
     - name: Save build cache
-      uses: actions/cache/save at v4
+      uses: actions/cache/save at v5
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -327,7 +327,7 @@ jobs:
     runs-on: windows-2022
     steps:
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     # ccache not supported for this generator and/or Debug
 
@@ -367,11 +367,11 @@ jobs:
     steps:
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v4
+      uses: actions/cache/restore at v5
       with:
         path: .ccache
         key: msvc-ninja-${{ matrix.ci.os }}-${{ matrix.ci.cxxstd }}-${{ matrix.ci.arch }}-${{ github.ref_name }}-${{ github.run_id }}
@@ -406,7 +406,7 @@ jobs:
         ccache --show-stats --verbose
 
     - name: Save build cache
-      uses: actions/cache/save at v4
+      uses: actions/cache/save at v5
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -447,11 +447,11 @@ jobs:
         clang++ --version
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v4
+      uses: actions/cache/restore at v5
       with:
         path: .ccache
         key: ${{ runner.os }}-${{ matrix.xcode }}-${{ matrix.build_type}}-${{ matrix.cxxstd }}-${{ github.ref_name }}-${{ github.run_id }}
@@ -472,7 +472,7 @@ jobs:
         ccache --show-stats
 
     - name: Save build cache
-      uses: actions/cache/save at v4
+      uses: actions/cache/save at v5
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -492,10 +492,10 @@ jobs:
         sudo -E apt-get autopurge -y needrestart
         sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make cmake emscripten ccache
 
-    - uses: actions/checkout at v5
+    - uses: actions/checkout at v6
 
     - name: Retrieve build cache
-      uses: actions/cache/restore at v4
+      uses: actions/cache/restore at v5
       id: restore-cache
       with:
         path: .ccache
@@ -516,7 +516,7 @@ jobs:
         ccache --show-stats
 
     - name: Save build cache
-      uses: actions/cache/save at v4
+      uses: actions/cache/save at v5
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -537,7 +537,7 @@ jobs:
         python3 -m pip install --disable-pip-version-check --user codespell
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: 'cppcheck'
       run: ./tools/cppcheck.sh
@@ -561,7 +561,7 @@ jobs:
         echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
       with:
         path: geos
 
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 556a2143e..a99e32536 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -37,11 +37,11 @@ jobs:
 
     steps:
     - name: Checkout repository
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     # Initializes the CodeQL tools for scanning.
     - name: Initialize CodeQL
-      uses: github/codeql-action/init at v3
+      uses: github/codeql-action/init at v4
       with:
         languages: ${{ matrix.language }}
         # If you wish to specify custom queries, you can do so here or in a config file.
@@ -64,6 +64,6 @@ jobs:
           make -j$(nproc)
 
     - name: Perform CodeQL Analysis
-      uses: github/codeql-action/analyze at v3
+      uses: github/codeql-action/analyze at v4
       with:
         category: "/language:${{matrix.language}}"
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml
index 0505fd9e1..4bace6fd6 100644
--- a/.github/workflows/container.yml
+++ b/.github/workflows/container.yml
@@ -23,13 +23,13 @@ jobs:
     steps:
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: Set up Docker Buildx
-      uses: docker/setup-buildx-action at v2
+      uses: docker/setup-buildx-action at v4
 
     - name: Login to GitHub Container Registry
-      uses: docker/login-action at v2
+      uses: docker/login-action at v4
       with:
         registry: ghcr.io
         username: ${{ github.repository_owner }}
@@ -40,7 +40,7 @@ jobs:
         cp tools/ci/geosop/Dockerfile .
 
     - name: Build and Push
-      uses: docker/build-push-action at v4
+      uses: docker/build-push-action at v7
       with:
         context: .
         # platforms: linux/amd64,linux/arm64
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 0cd89dd4e..afdb1878a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -33,7 +33,7 @@ jobs:
         sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
 
     - name: 'Check Out'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: Get tag
       id: tag
@@ -68,7 +68,7 @@ jobs:
     - name: Create Release
       if: ${{ steps.tag.outputs.tag == steps.version.outputs.geosversion }}
       id: create_release
-      uses: softprops/action-gh-release at v1
+      uses: softprops/action-gh-release at v2
       with:
         body_path: ${{ steps.notes.outputs.geosnotes }}
         name: Release ${{ steps.version.outputs.geosversion }}
diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml
index 7a14b534c..c059e4210 100644
--- a/.github/workflows/web.yml
+++ b/.github/workflows/web.yml
@@ -27,7 +27,7 @@ jobs:
         sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
 
     - name: 'Check Out 📗'
-      uses: actions/checkout at v4
+      uses: actions/checkout at v6
 
     - name: 'Hugo Build 🛠'
       # ...or replace 'master' with a full version tag, such as: v0.64.1
@@ -51,7 +51,7 @@ jobs:
         cp -ra build.cmake/doxygen/doxygen_docs/html/* public_html/doxygen
 
     - name: 'Deploy 🚀'
-      uses: JamesIves/github-pages-deploy-action at v4.4.1
+      uses: JamesIves/github-pages-deploy-action at v4
       with:
         branch: gh-pages           # The branch the action should deploy to.
         folder: public_html    # The folder the action should deploy.

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/ci.yml        | 38 +++++++++++++++++++-------------------
 .github/workflows/codeql.yml    |  6 +++---
 .github/workflows/container.yml |  8 ++++----
 .github/workflows/release.yml   |  4 ++--
 .github/workflows/web.yml       |  4 ++--
 5 files changed, 30 insertions(+), 30 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list