From f009d01ad01a86b099e78caf8a0e7fe2dc600ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 12 Oct 2021 17:39:24 +0200 Subject: [PATCH 1/3] update caches --- .github/actions/rust/rust-setup/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/rust/rust-setup/action.yml b/.github/actions/rust/rust-setup/action.yml index a7f9bcffdf..f7bcfc9235 100644 --- a/.github/actions/rust/rust-setup/action.yml +++ b/.github/actions/rust/rust-setup/action.yml @@ -27,7 +27,7 @@ runs: override: true - name: Cache cargo - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: # https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci path: | @@ -52,7 +52,7 @@ runs: command: update - name: Cache build target - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: path: ${{ inputs.target-cache-path }} # Add date to the cache to keep it up to date From c90d2484d91e2407ac224c2b34444fbfb7d02bc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Tue, 12 Oct 2021 17:45:31 +0200 Subject: [PATCH 2/3] added actions to watched paths --- .github/workflows/build-and-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 48fe814d74..92e55dc6a1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -11,6 +11,7 @@ on: - dev paths: - '.github/workflows/build-and-test.yml' + - '.github/actions' - '**.rs' - '**.toml' From cd51fbe189dc1deb5ef2eb9f1cb964876dab4a8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Wed, 20 Oct 2021 16:44:48 +0200 Subject: [PATCH 3/3] updated cache version for examples workflow --- .github/workflows/examples.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index d2595b7092..9134f03abd 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -29,7 +29,7 @@ jobs: run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - name: Cache cargo - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: # https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci path: | @@ -79,7 +79,7 @@ jobs: run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV - name: Cache cargo - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.6 with: # https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci path: |