Skip to content

Commit 3484c07

Browse files
committed
Bump actions/upload-artifact and actions/cache versions to v4
Bumped due to cancelation of running CI workflows with the deprecated version of actions/upload-artifact@v3 and in order to prevent future interruptions with deprecation of actions/cache@v2. Patch by Bohdan Siryk; Reviewed by João Reis, Stanislav Bychkov for CASSGO-48
1 parent ba7d563 commit 3484c07

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/setup-go@v2
4545
with:
4646
go-version: ${{ matrix.go }}
47-
- uses: actions/cache@v2
47+
- uses: actions/cache@v4
4848
id: gomod-cache
4949
with:
5050
path: ~/go/pkg/mod
@@ -113,9 +113,9 @@ jobs:
113113
go test -v -tags "${{ matrix.tags }} gocql_debug" -timeout=5m -race ${{ env.args }}
114114
- name: 'Save ccm logs'
115115
if: 'failure()'
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
with:
118-
name: ccm-cluster
118+
name: ccm-cluster-cassandra-${{ matrix.cassandra_version }}-go-${{ matrix.go }}-tag-${{ matrix.tags }}
119119
path: /home/runner/.ccm/test
120120
retention-days: 5
121121
integration-auth-cassandra:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020

2121
- Remove deprecated global logger (CASSGO-24)
2222

23+
- Bumped actions/upload-artifact and actions/cache versions to v4 in CI workflow (CASSGO-48)
24+
2325
### Fixed
2426

2527
- Retry policy now takes into account query idempotency (CASSGO-27)

0 commit comments

Comments
 (0)