Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/bundled-lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8

- name: Install C++ dependencies
run: sudo apt-get install -y build-essential cmake libboost-all-dev libclang-dev
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/unbundled-lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Cache vsomeip build
id: cache-vsomeip
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0-working
with:
path: ${{ env.VSOMEIP_INSTALL_PATH }}
key: ${{ runner.os }}-vsomeip-${{ hashFiles(env.VSOMEIP_SOURCE_PATH_WITH_WILDCARD) }}
Expand All @@ -144,7 +144,7 @@ jobs:

- name: Save vsomeip build to cache
if: steps.cache-vsomeip.outputs.cache-hit != 'true'
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0-working
with:
path: ${{ env.VSOMEIP_INSTALL_PATH }}
key: ${{ runner.os }}-vsomeip-${{ hashFiles(env.VSOMEIP_SOURCE_PATH_WITH_WILDCARD) }}
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
echo "cache_key: ${{ env.CACHE_KEY }}"

- name: Restore vsomeip build cache
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0-working
with:
path: ${{ env.VSOMEIP_INSTALL_PATH }}
key: ${{ env.CACHE_KEY }}
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:

steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8

- name: Install C++ dependencies
if: steps.cache-vsomeip.outputs.cache-hit != 'true'
Expand All @@ -244,7 +244,7 @@ jobs:
echo "cache_key: ${{ env.CACHE_KEY }}"

- name: Restore vsomeip build cache
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0-working
with:
path: ${{ env.VSOMEIP_INSTALL_PATH }}
key: ${{ env.CACHE_KEY }}
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
echo "cache_key: ${{ env.CACHE_KEY }}"

- name: Restore vsomeip build cache
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0
uses: actions/cache@6f8efc29b200d32929f49075959781ed54ec270c # v3.5.0-working
with:
path: ${{ env.VSOMEIP_INSTALL_PATH }}
key: ${{ env.CACHE_KEY }}
Expand Down
Loading