Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/docker/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ runs:
run: echo "HOME=$HOME" >> $GITHUB_ENV

- name: Cargo cache for Docker
uses: actions/cache@v4
uses: actions/cache@v5
id: cargo-cache
with:
path: |
Expand Down Expand Up @@ -141,7 +141,7 @@ runs:
skip-extraction: ${{ steps.cargo-cache.outputs.cache-hit }}

- name: Yarn unplugged cache for Docker
uses: actions/cache@v4
uses: actions/cache@v5
id: yarn-cache
with:
path: ${{ env.HOME }}/yarn-unplugged-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/librocksdb/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: composite
steps:
- name: Cache librocksdb
uses: actions/cache@v4
uses: actions/cache@v5
id: librocksdb-cache
with:
key: librocksdb/${{ inputs.version }}/${{ runner.os }}/${{ runner.arch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/local-network/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:

- name: Restore local network data
id: local-network-data
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.HOME }}/.dashmate
Expand Down Expand Up @@ -63,7 +63,7 @@ runs:
if: steps.local-network-data.outputs.cache-hit != 'true'

- name: Save local network data
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.HOME }}/.dashmate
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/nodejs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
run: npm config set audit false

- name: Cache NPM build artifacts
uses: actions/cache@v4
uses: actions/cache@v5
with:
# Cache the unplugged packages (unpacked native builds), yarn's
# build-state (so postinstalls don't re-run) and install-state
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/rust/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ runs:
- name: Restore cached protoc (v32.0)
if: runner.os == 'Linux'
id: cache-protoc
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ steps.resolved_home.outputs.home }}/.local/protoc-32.0/bin
Expand All @@ -94,7 +94,7 @@ runs:

- name: Save cached protoc (v32.0)
if: runner.os == 'Linux' && steps.cache-protoc.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ steps.resolved_home.outputs.home }}/.local/protoc-32.0/bin
Expand All @@ -106,7 +106,7 @@ runs:
run: echo "HOME=$HOME" >> $GITHUB_ENV

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@v5
if: inputs.cache == 'true'
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swift-example-app-ui-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Restore cached Protobuf
id: cache-protoc
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.local/protoc-32.0/bin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/swift-sdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Restore cached Protobuf (protoc)
id: cache-protoc
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ env.HOME }}/.local/protoc-32.0/bin
Expand All @@ -88,7 +88,7 @@ jobs:

- name: Save cached Protobuf (protoc)
if: steps.cache-protoc.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
${{ env.HOME }}/.local/protoc-32.0/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swift-sdk-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo registry
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Cache protoc Docker image
id: cache-protoc
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: /tmp/protoc-image.tar
key: docker-rvolosatovs-protoc-4.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-dashmate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Restore test suite local network data to speed up dashmate local network tests
id: local-network-data
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
${{ env.HOME }}/.dashmate
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-rs-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ jobs:

- name: Upload coverage
if: always()
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
files: lcov.info
flags: rust
Expand Down
Loading