Skip to content

Commit 49c8c6d

Browse files
authored
ci: bump actions/cache to v5 and codecov/codecov-action to v6 (#741)
Both actions now run on Node.js 24, silencing the Node.js 20 deprecation warnings GitHub Actions emits. `codecov/codecov-action@v6` also pulls in `actions/github-script@v8`, which removes the second deprecation notice surfaced via the codecov step.
1 parent d6dd5da commit 49c8c6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# Set up dashd and test data for groups that need it
4949
- name: Cache dashd and test data
5050
if: matrix.group == 'spv' || matrix.group == 'ffi'
51-
uses: actions/cache@v4
51+
uses: actions/cache@v5
5252
with:
5353
path: .rust-dashcore-test
5454
key: rust-dashcore-test-${{ inputs.os }}-${{ env.DASHVERSION }}-${{ env.TEST_DATA_REPO }}-${{ env.TEST_DATA_VERSION }}
@@ -75,7 +75,7 @@ jobs:
7575

7676
- name: Upload coverage to Codecov
7777
if: inputs.coverage && steps.tests.outputs.crate_flags
78-
uses: codecov/codecov-action@v5
78+
uses: codecov/codecov-action@v6
7979
with:
8080
files: lcov.info
8181
flags: ${{ steps.tests.outputs.crate_flags }}

0 commit comments

Comments
 (0)