[geos-commits] [SCM] GEOS branch 3.13 updated. 938dcf7d376144e8cdcde79a424feabff94ea413
git at osgeo.org
git at osgeo.org
Sun Mar 22 17:30:17 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.13 has been updated
via 938dcf7d376144e8cdcde79a424feabff94ea413 (commit)
from 2bf492cf2c9915663f08f3fc7e7e7b3aef45f6d6 (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 938dcf7d376144e8cdcde79a424feabff94ea413
Author: Mike Taves <mwtoews at gmail.com>
Date: Mon Mar 23 13:08:33 2026 +1300
CI: update various GitHub Actions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index deea2b503..7d88e428b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -149,10 +149,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
@@ -181,7 +181,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 }}
@@ -203,7 +203,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
@@ -229,7 +229,7 @@ jobs:
steps:
- name: 'Check Out'
- uses: actions/checkout at v4
+ uses: actions/checkout at v6
- name: 'Setup'
uses: msys2/setup-msys2 at v2
@@ -244,7 +244,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 }}
@@ -266,7 +266,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 }}
@@ -280,7 +280,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
@@ -321,11 +321,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 }}
@@ -360,7 +360,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 }}
@@ -401,11 +401,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 }}
@@ -426,7 +426,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 }}
@@ -435,7 +435,6 @@ jobs:
working-directory: ./build
run: ctest -V --output-on-failure -C ${{ matrix.build_type }}
-
code-quality:
name: Code quality checks
runs-on: ubuntu-latest
@@ -448,7 +447,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
@@ -472,7 +471,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 a268cef6a..845d021a7 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 4bcc1306c..c059e4210 100644
--- a/.github/workflows/web.yml
+++ b/.github/workflows/web.yml
@@ -27,11 +27,11 @@ 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
- uses: jakejarvis/hugo-build-action at v0.88.1
+ uses: jakejarvis/hugo-build-action at v0.111.3
with:
args: --source web --destination public --verbose
@@ -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 | 33 ++++++++++++++++-----------------
.github/workflows/codeql.yml | 6 +++---
.github/workflows/container.yml | 8 ++++----
.github/workflows/release.yml | 4 ++--
.github/workflows/web.yml | 6 +++---
5 files changed, 28 insertions(+), 29 deletions(-)
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list