Skip to content

Commit

Permalink
🔀 Merge branch 'ladislas/feature/ci-update-action-cache' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Feb 28, 2024
2 parents 3c343f4 + 820c257 commit 66e5cd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ runs:

- name: Cache ARM GCC Toolchain
id: global_cache-arm_gnu_toolchain
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.RUNNER_HOME }}/arm-gnu-toolchain
key: ${{ runner.os }}-global_cache-arm_gnu_toolchain-${{ hashFiles('config/toolchain_gcc_arm_none_eabi_url') }}
Expand Down Expand Up @@ -104,7 +104,7 @@ runs:
- name: Cache ccache
id: global_cache-ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.CCACHE_DIR}}
key: ${{ inputs.ccache_key }}-(${{ env.CACHE_NOW_TIME }}) # TODO(@ladislas): separate env from setup
Expand All @@ -116,7 +116,7 @@ runs:

- name: Cache pip dependencies
id: global_cache-pip_dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.RUNNER_HOME }}/.cache/pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-code_analysis-sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
distribution: "temurin"
java-version: 17

#
Expand All @@ -65,7 +65,7 @@ jobs:
- name: Cache sonarcloud cache
id: global_cache-sonarcloud
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.SONARCLOUD_CACHE_DIR}}
key: ${{ runner.os }}-global_cache-sonarcloud-${{ github.event.number }}-${{ env.CACHE_NOW_TIME }}
Expand Down

0 comments on commit 66e5cd5

Please sign in to comment.