[geos-commits] [SCM] GEOS branch dependabot/github_actions/all-actions-75c878a17d created. 75a7aee174a6fcdefaf38f03e7f051e4fbc249c6
git at osgeo.org
git at osgeo.org
Wed Jul 1 08:51:31 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, dependabot/github_actions/all-actions-75c878a17d has been created
at 75a7aee174a6fcdefaf38f03e7f051e4fbc249c6 (commit)
- Log -----------------------------------------------------------------
commit 75a7aee174a6fcdefaf38f03e7f051e4fbc249c6
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed Jul 1 15:51:08 2026 +0000
Bump the all-actions group with 6 updates
Bumps the all-actions group with 6 updates:
| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `7.0.0` |
| [actions/cache](https://github.com/actions/cache) | `5` | `6.1.0` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` |
| [vmactions/freebsd-vm](https://github.com/vmactions/freebsd-vm) | `1.4.5` | `1.4.8` |
| [github/codeql-action](https://github.com/github/codeql-action) | `4.36.0` | `4.36.2` |
| [docker/build-push-action](https://github.com/docker/build-push-action) | `7` | `7.2.0` |
Updates `actions/checkout` from 6.0.2 to 7.0.0
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6.0.2...v7.0.0)
Updates `actions/cache` from 5 to 6.1.0
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5...v6.1.0)
Updates `codecov/codecov-action` from 6 to 7
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v6...v7)
Updates `vmactions/freebsd-vm` from 1.4.5 to 1.4.8
- [Release notes](https://github.com/vmactions/freebsd-vm/releases)
- [Commits](https://github.com/vmactions/freebsd-vm/compare/v1.4.5...v1.4.8)
Updates `github/codeql-action` from 4.36.0 to 4.36.2
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v4.36.0...v4.36.2)
Updates `docker/build-push-action` from 7 to 7.2.0
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v7...v7.2.0)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: all-actions
- dependency-name: actions/cache
dependency-version: 6.1.0
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: all-actions
- dependency-name: codecov/codecov-action
dependency-version: '7'
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: all-actions
- dependency-name: vmactions/freebsd-vm
dependency-version: 1.4.8
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: all-actions
- dependency-name: github/codeql-action
dependency-version: 4.36.2
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: all-actions
- dependency-name: docker/build-push-action
dependency-version: 7.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: all-actions
...
Signed-off-by: dependabot[bot] <support at github.com>
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5f7a5e237..c493e6f3b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -197,10 +197,10 @@ jobs:
python3 -m pip install --disable-pip-version-check --user cmake==${{ matrix.ci.cmake }}
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -227,7 +227,7 @@ jobs:
ccache --show-stats
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -263,7 +263,7 @@ jobs:
- name: Upload Coverage to Codecov
if: ${{ matrix.ci.build_type == 'Coverage' && !cancelled() }}
- uses: codecov/codecov-action at v6
+ uses: codecov/codecov-action at v7
with:
fail_ci_if_error: false
files: build/coverage.info
@@ -281,7 +281,7 @@ jobs:
build_type: ['Debug', 'Release']
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: 'Setup'
uses: msys2/setup-msys2 at v2
@@ -295,7 +295,7 @@ jobs:
mingw-w64-x86_64-gcc
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -316,7 +316,7 @@ jobs:
ccache --show-stats --verbose
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -337,7 +337,7 @@ jobs:
arch: arm64
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
# ccache not supported for this generator and/or Debug
@@ -378,10 +378,10 @@ jobs:
runs-on: ${{ matrix.ci.os }}
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -415,7 +415,7 @@ jobs:
ccache --show-stats --verbose
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -459,10 +459,10 @@ jobs:
which clang++
clang++ --version
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -482,7 +482,7 @@ jobs:
ccache --show-stats
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -495,10 +495,10 @@ jobs:
name: FreeBSD
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -506,7 +506,7 @@ jobs:
restore-keys: freebsd
- name: Build and test
- uses: vmactions/freebsd-vm at v1.4.5
+ uses: vmactions/freebsd-vm at v1.4.8
with:
release: "15.0"
envs: CCACHE_COMPRESS CCACHE_COMPRESSLEVEL CCACHE_MAXSIZE
@@ -524,7 +524,7 @@ jobs:
rm -rf build
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -540,10 +540,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 v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Retrieve build cache
- uses: actions/cache/restore at v5
+ uses: actions/cache/restore at v6.1.0
id: restore-cache
with:
path: .ccache
@@ -562,7 +562,7 @@ jobs:
ccache --show-stats
- name: Save build cache
- uses: actions/cache/save at v5
+ uses: actions/cache/save at v6.1.0
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
@@ -582,7 +582,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install cppcheck
python3 -m pip install --disable-pip-version-check --user codespell
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: 'cppcheck'
run: ./tools/cppcheck.sh
@@ -605,7 +605,7 @@ jobs:
python3 -m pip install --disable-pip-version-check --user cmake==3.15.*
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
with:
path: geos
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 39126ac0d..3b2190fcf 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -36,11 +36,11 @@ jobs:
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
- uses: github/codeql-action/init at v4.36.0
+ uses: github/codeql-action/init at v4.36.2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -63,6 +63,6 @@ jobs:
make -j$(nproc)
- name: Perform CodeQL Analysis
- uses: github/codeql-action/analyze at v4.36.0
+ uses: github/codeql-action/analyze at v4.36.2
with:
category: "/language:${{matrix.language}}"
diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml
index d9168c715..af7b5e652 100644
--- a/.github/workflows/container.yml
+++ b/.github/workflows/container.yml
@@ -24,7 +24,7 @@ jobs:
steps:
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Docker meta
id: meta
@@ -54,7 +54,7 @@ jobs:
cp tools/ci/geosop/Dockerfile .
- name: Build and Push
- uses: docker/build-push-action at v7
+ uses: docker/build-push-action at v7.2.0
with:
context: .
push: true
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 2920c83ae..2931ed4ae 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
uname -a
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
- - uses: actions/checkout at v6.0.2
+ - uses: actions/checkout at v7.0.0
- name: Get tag
id: tag
diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml
index cdd46c346..152377359 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 v6.0.2
+ uses: actions/checkout at v7.0.0
- name: 'Hugo Build 🛠'
# ...or replace 'master' with a full version tag, such as: v0.64.1
-----------------------------------------------------------------------
hooks/post-receive
--
GEOS
More information about the geos-commits
mailing list