[geos-commits] [SCM] GEOS branch 3.12 updated. 23ce804783aa2ac864d08df08d329a8b082f759c

git at osgeo.org git at osgeo.org
Thu Jun 6 14:01:05 PDT 2024


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.12 has been updated
       via  23ce804783aa2ac864d08df08d329a8b082f759c (commit)
      from  02584d8bebf2a889d3a0deb185fd7952f03a502d (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 23ce804783aa2ac864d08df08d329a8b082f759c
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Jun 6 14:00:44 2024 -0700

    Update actions versions for GHA node 20 update

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 485db6b5f..f1987458d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -205,10 +205,10 @@ jobs:
         echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
 
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: Retrieve build cache
-      uses: actions/cache/restore at v3
+      uses: actions/cache/restore at v4
       id: restore-cache
       with:
         path: .ccache
@@ -236,7 +236,7 @@ jobs:
         ccache -s
 
     - name: Save build cache
-      uses: actions/cache/save at v3
+      uses: actions/cache/save at v4
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -286,7 +286,7 @@ jobs:
 
     steps:
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: 'Setup'
       uses: msys2/setup-msys2 at v2
@@ -296,7 +296,7 @@ jobs:
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v3
+      uses: actions/cache/restore at v4
       with:
         path: .ccache
         key: windows-mingw-${{ matrix.build_type}}-${{ github.ref_name }}-${{ github.run_id }}
@@ -315,7 +315,7 @@ jobs:
        cmake --build . -j 2
 
     - name: Save build cache
-      uses: actions/cache/save at v3
+      uses: actions/cache/save at v4
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -341,14 +341,14 @@ jobs:
     runs-on: ${{ matrix.ci.os }}
     steps:
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: 'Setup'
       run: choco install ccache
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v3
+      uses: actions/cache/restore at v4
       with:
         path: .ccache
         key: windows-msvc-${{ matrix.build_type}}-${{ github.ref_name }}-${{ github.run_id }}
@@ -363,7 +363,7 @@ jobs:
        cmake --build . --config ${{ matrix.ci.build_type }} -j 2
 
     - name: Save build cache
-      uses: actions/cache/save at v3
+      uses: actions/cache/save at v4
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -406,11 +406,11 @@ jobs:
         clang++ --version
 
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: Retrieve build cache
       id: restore-cache
-      uses: actions/cache/restore at v3
+      uses: actions/cache/restore at v4
       with:
         path: .ccache
         key: ${{ runner.os }}-${{ matrix.xcode }}-${{ matrix.build_type}}-${{ matrix.cxxstd }}-${{ github.ref_name }}-${{ github.run_id }}
@@ -432,7 +432,7 @@ jobs:
         cmake --build . --config ${BUILD_TYPE} -j 3
 
     - name: Save build cache
-      uses: actions/cache/save at v3
+      uses: actions/cache/save at v4
       with:
         path: .ccache
         key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -454,7 +454,7 @@ jobs:
         sudo -E apt-get -yq --no-install-suggests --no-install-recommends install cppcheck
 
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: 'cppcheck'
       run: |
@@ -475,7 +475,7 @@ jobs:
         echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
 
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
       with:
         path: geos
 
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml
index 5b4aca3e2..0505fd9e1 100644
--- a/.github/workflows/container.yml
+++ b/.github/workflows/container.yml
@@ -23,7 +23,7 @@ jobs:
     steps:
 
     - name: 'Check Out'
-      uses: actions/checkout at v3
+      uses: actions/checkout at v4
 
     - name: Set up Docker Buildx
       uses: docker/setup-buildx-action at v2
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 377aa8d71..0cd89dd4e 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 v3
+      uses: actions/checkout at v4
 
     - name: Get tag
       id: tag
diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml
index 019c1ce24..4bcc1306c 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 v3
+      uses: actions/checkout at v4
 
     - name: 'Hugo Build 🛠'
       # ...or replace 'master' with a full version tag, such as: v0.64.1

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

Summary of changes:
 .github/workflows/ci.yml        | 28 ++++++++++++++--------------
 .github/workflows/container.yml |  2 +-
 .github/workflows/release.yml   |  2 +-
 .github/workflows/web.yml       |  2 +-
 4 files changed, 17 insertions(+), 17 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list