diff --git a/.github/workflows/artifacts-updater.yml b/.github/workflows/artifacts-updater.yml index 8d3201ed9..4fbc72ac4 100644 --- a/.github/workflows/artifacts-updater.yml +++ b/.github/workflows/artifacts-updater.yml @@ -58,7 +58,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -74,7 +74,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date @@ -89,7 +89,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 627e1e22f..55bd205ff 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -58,7 +58,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -74,7 +74,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date @@ -89,7 +89,7 @@ jobs: - name: cache cargo `tooling/bench/tests` target uses: actions/cache@v2 env: - cache-name: cargo-benches + cache-name: cargo_benches with: path: tooling/bench/tests/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index ef6671023..56ecb30d9 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -43,7 +43,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -59,7 +59,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date @@ -74,7 +74,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/lint-fmt-cli.yml b/.github/workflows/lint-fmt-cli.yml index 7141fbe72..74d5b83f4 100644 --- a/.github/workflows/lint-fmt-cli.yml +++ b/.github/workflows/lint-fmt-cli.yml @@ -66,7 +66,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -82,7 +82,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/lint-fmt-core.yml b/.github/workflows/lint-fmt-core.yml index dfd0f42d2..c492a54a0 100644 --- a/.github/workflows/lint-fmt-core.yml +++ b/.github/workflows/lint-fmt-core.yml @@ -81,7 +81,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -97,7 +97,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date diff --git a/.github/workflows/test-bundler.yml b/.github/workflows/test-bundler.yml index 0c07fc89e..e497603e2 100644 --- a/.github/workflows/test-bundler.yml +++ b/.github/workflows/test-bundler.yml @@ -50,7 +50,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -66,7 +66,7 @@ jobs: - name: Cache bundler cargo target uses: actions/cache@v2 env: - cache-name: cargo-bundler + cache-name: cargo_bundler with: path: tooling/bundler/target # Add date to the cache to keep it up to date @@ -125,7 +125,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -141,7 +141,7 @@ jobs: - name: Cache bundler cargo target uses: actions/cache@v2 env: - cache-name: cargo-bundler + cache-name: cargo_bundler with: path: tooling/bundler/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/test-cli.yml b/.github/workflows/test-cli.yml index 960118cfe..922803984 100644 --- a/.github/workflows/test-cli.yml +++ b/.github/workflows/test-cli.yml @@ -57,7 +57,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -73,7 +73,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date @@ -130,7 +130,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -146,7 +146,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date @@ -161,7 +161,7 @@ jobs: - name: Cache template cargo target uses: actions/cache@v2 env: - cache-name: cargo-template + cache-name: cargo_template with: path: tooling/cli/node/test/jest/fixtures/empty/src-tauri/target # Add date to the cache to keep it up to date diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 7f7dd1c62..477b775ed 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -57,7 +57,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -73,7 +73,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date diff --git a/.github/workflows/udeps.yml b/.github/workflows/udeps.yml index b7685df8e..413a8a91c 100644 --- a/.github/workflows/udeps.yml +++ b/.github/workflows/udeps.yml @@ -62,7 +62,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -78,7 +78,7 @@ jobs: - name: Cache core cargo target uses: actions/cache@v2 env: - cache-name: cargo-core + cache-name: cargo_core with: path: target # Add date to the cache to keep it up to date @@ -93,7 +93,7 @@ jobs: - name: Cache bundler cargo target uses: actions/cache@v2 env: - cache-name: cargo-bundler + cache-name: cargo_bundler with: path: tooling/bundler/target # Add date to the cache to keep it up to date @@ -108,7 +108,7 @@ jobs: - name: Cache CLI cargo target uses: actions/cache@v2 env: - cache-name: cargo-cli + cache-name: cargo_cli with: path: tooling/cli/target # Add date to the cache to keep it up to date diff --git a/tooling/cli/templates/plugin/backend/.github/workflows/test.yml b/tooling/cli/templates/plugin/backend/.github/workflows/test.yml index 2f22f1b03..eb16ea83e 100755 --- a/tooling/cli/templates/plugin/backend/.github/workflows/test.yml +++ b/tooling/cli/templates/plugin/backend/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: with: toolchain: stable override: true - + - name: Install gtk on Ubuntu if: matrix.os == 'ubuntu-latest' run: | @@ -47,7 +47,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -63,7 +63,7 @@ jobs: - name: Cache cargo target uses: actions/cache@v2 env: - cache-name: cargo-build + cache-name: cargo_build with: path: ${{ matrix.project}}/target # Add date to the cache to keep it up to date @@ -75,7 +75,7 @@ jobs: ${{ matrix.os }}-stable- ${{ matrix.os }}- - - name: Run tests + - name: Run tests uses: actions-rs/cargo@v1 with: command: test diff --git a/tooling/cli/templates/plugin/with-api/.github/workflows/test.yml b/tooling/cli/templates/plugin/with-api/.github/workflows/test.yml index 2f22f1b03..eb16ea83e 100644 --- a/tooling/cli/templates/plugin/with-api/.github/workflows/test.yml +++ b/tooling/cli/templates/plugin/with-api/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: with: toolchain: stable override: true - + - name: Install gtk on Ubuntu if: matrix.os == 'ubuntu-latest' run: | @@ -47,7 +47,7 @@ jobs: - name: Cache cargo state uses: actions/cache@v2 env: - cache-name: cargo-state + cache-name: cargo_state with: path: | ~/.cargo/registry @@ -63,7 +63,7 @@ jobs: - name: Cache cargo target uses: actions/cache@v2 env: - cache-name: cargo-build + cache-name: cargo_build with: path: ${{ matrix.project}}/target # Add date to the cache to keep it up to date @@ -75,7 +75,7 @@ jobs: ${{ matrix.os }}-stable- ${{ matrix.os }}- - - name: Run tests + - name: Run tests uses: actions-rs/cargo@v1 with: command: test