Skip to content

Commit 31c83c4

Browse files
Update ccache CI version
1 parent 968b2d2 commit 31c83c4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/clang_format.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- uses: actions/checkout@v1
2828

2929
- name: Free Disk Space
30+
continue-on-error: true
3031
run: |
3132
sudo swapoff -a
3233
sudo rm -f /swapfile
@@ -42,7 +43,7 @@ jobs:
4243
message("::set-output name=timestamp::${current_date}")
4344
4445
- name: ccache cache files
45-
uses: actions/cache@v1.1.0
46+
uses: actions/cache@v4
4647
with:
4748
path: ${{ env.CI_NAME }}/.ccache
4849
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

.github/workflows/clang_tidy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: ccache cache files
5050
continue-on-error: true
51-
uses: actions/cache@v1.1.0
51+
uses: actions/cache@v4
5252
with:
5353
path: ${{ env.CI_NAME }}/.ccache
5454
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

.github/workflows/focal_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: ccache cache files
5252
continue-on-error: true
53-
uses: actions/cache@v1.1.0
53+
uses: actions/cache@v4
5454
with:
5555
path: ${{ env.CI_NAME }}/.ccache
5656
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

.github/workflows/unstable_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
BEFORE_RUN_TARGET_TEST_EMBED: "source /root/target_ws/install/setup.bash"
2828
CCACHE_DIR: "/home/runner/work/tesseract_ros/tesseract_ros/Unstable-Build/.ccache"
2929
UPSTREAM_CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Release"
30-
TARGET_CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug -DTESSERACT_ENABLE_CLANG_TIDY=ON -DTESSERACT_ENABLE_TESTING=ON"
30+
TARGET_CMAKE_ARGS: "-DCMAKE_BUILD_TYPE=Debug -DTESSERACT_ENABLE_TESTING=ON"
3131
steps:
3232
- uses: actions/checkout@v1
3333

@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: ccache cache files
5151
continue-on-error: true
52-
uses: actions/cache@v1.1.0
52+
uses: actions/cache@v4
5353
with:
5454
path: ${{ env.CI_NAME }}/.ccache
5555
key: ${{ env.CI_NAME }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}

0 commit comments

Comments
 (0)