Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 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 All @@ -151,7 +151,7 @@ runs:

- name: Set arch
id: arch
uses: actions/github-script@v6
uses: actions/github-script@v8
with:
result-encoding: "string"
script: return '${{ inputs.platform }}'.replace('linux/', '');
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
8 changes: 4 additions & 4 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 Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Comment/update PR with artifact link and usage guide (skip if unchanged)
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const runUrl = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`;
Expand Down
4 changes: 2 additions & 2 deletions .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 Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Check existing release for changes
id: check
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
NAME: ${{ steps.tag.outputs.name }}
with:
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