From 7637bde924a53b9b2327b4be3f3aad0d0e945db5 Mon Sep 17 00:00:00 2001 From: Philipp Borgers Date: Tue, 1 Nov 2022 17:36:41 +0100 Subject: [PATCH] Github actions: Update cache action to version 3 Fixes deprecation warning in build process: "Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, jurplel/install-qt-action, actions/cache, EthanSK/git-branch-name-action, actions/cache, actions/checkout" --- .github/workflows/android_release.yml | 2 +- .github/workflows/linux_debug.yml | 2 +- .github/workflows/linux_release.yml | 2 +- .github/workflows/macos_release.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android_release.yml b/.github/workflows/android_release.yml index 07b23a0..d54e55d 100644 --- a/.github/workflows/android_release.yml +++ b/.github/workflows/android_release.yml @@ -74,7 +74,7 @@ jobs: message("::set-output name=timestamp::${current_date}") - name: ccache cache files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}} diff --git a/.github/workflows/linux_debug.yml b/.github/workflows/linux_debug.yml index b537144..f9d5f77 100644 --- a/.github/workflows/linux_debug.yml +++ b/.github/workflows/linux_debug.yml @@ -57,7 +57,7 @@ jobs: message("::set-output name=timestamp::${current_date}") - name: ccache cache files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}} diff --git a/.github/workflows/linux_release.yml b/.github/workflows/linux_release.yml index 0357006..dc2916e 100644 --- a/.github/workflows/linux_release.yml +++ b/.github/workflows/linux_release.yml @@ -66,7 +66,7 @@ jobs: message("::set-output name=timestamp::${current_date}") - name: ccache cache files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}} diff --git a/.github/workflows/macos_release.yml b/.github/workflows/macos_release.yml index 0541b60..4838eb1 100644 --- a/.github/workflows/macos_release.yml +++ b/.github/workflows/macos_release.yml @@ -65,7 +65,7 @@ jobs: message("::set-output name=timestamp::${current_date}") - name: ccache cache files - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.ccache key: ${{ runner.os }}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}}