This is an automated email from the ASF dual-hosted git repository.
joaoreis pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-gocql-driver.git
The following commit(s) were added to refs/heads/trunk by this push:
new 9cad3b62 Upgraded Github actions dependencies in ci workflow
9cad3b62 is described below
commit 9cad3b62c0cfff651ceb1cc2090fb278f4c11fb8
Author: Bohdan Siryk <[email protected]>
AuthorDate: Wed Mar 18 15:12:49 2026 +0200
Upgraded Github actions dependencies in ci workflow
The patch upgrades a set of Github actions dependencies due to changes of
the default Node.js - the next default one is 24.
Dependencies that were upgraded:
- actions/checkout to v6
- actions/setup-go to v6
- actions/setup-python to v6
- actons/cache to v5
Patch by Bohdan Siryk; reviewed by João Reis for CASSGO-111
---
.github/workflows/main.yml | 24 ++++++++++++------------
CHANGELOG.md | 4 +---
2 files changed, 13 insertions(+), 15 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index b11c0fb7..440aaa75 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -15,8 +15,8 @@ jobs:
matrix:
go: [ '1.25', '1.26' ]
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-go@v4
+ - uses: actions/checkout@v6
+ - uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Run linting
@@ -43,26 +43,26 @@ jobs:
- proto_version: "5"
compressor: "snappy"
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v6
- - uses: actions/setup-go@v5
+ - uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: Makefile
- name: Set up cache for SDKMAN
- uses: actions/cache@v3
+ uses: actions/cache@v5
with:
path: ~/.sdkman
key: ${{ runner.os }}-sdkman
- name: Set up cache for CCM
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ~/.ccm/repository
key: ${{ runner.os }}-ccm-${{ matrix.cassandra_version }}
@@ -108,25 +108,25 @@ jobs:
- proto_version: "5"
compressor: "snappy"
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-go@v4
+ - uses: actions/checkout@v6
+ - uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: Makefile
- name: Set up cache for SDKMAN
- uses: actions/cache@v3
+ uses: actions/cache@v5
with:
path: ~/.sdkman
key: ${{ runner.os }}-sdkman
- name: Set up cache for CCM
- uses: actions/cache@v4
+ uses: actions/cache@v5
with:
path: ~/.ccm/repository
key: ${{ runner.os }}-ccm-${{ matrix.cassandra_version }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b5586ef9..cc8295d1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,10 +21,8 @@ and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0
- Use protocol downgrading approach during protocol negotiation (CASSGO-97)
- TokenAwareHostPolicy now populates replica maps for non-default keyspaces
(CASSGO-104)
- Add options to shuffle replicas for token-aware policy and log warning when
the default behavior is used (CASSGO-106)
-
-### Changed
-
- Bump Go version support from 1.22 and 1.23 to 1.25 and 1.26 (CASSGO-110)
+- Upgraded Github actions dependencies versions (CASSGO-111)
### Fixed
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]