diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 9c31aa4a5..4522b948b 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -45,11 +45,11 @@ jobs: - name: Install Rust if: steps.cache-builder.outputs.cache-hit != 'true' - uses: dtolnay/rust-toolchain@stable + uses: https://github.com/dtolnay/rust-toolchain@stable - - name: Rust Cache (Compiler Internals) + - name: Rust Cache if: steps.cache-builder.outputs.cache-hit != 'true' - uses: Swatinem/rust-cache@v2 + https://github.com/Swatinem/rust-cache@v2 with: workspaces: "src/actions/builder -> target" diff --git a/.forgejo/workflows/linter.yml b/.forgejo/workflows/linter.yml index 6cda45244..399962fec 100644 --- a/.forgejo/workflows/linter.yml +++ b/.forgejo/workflows/linter.yml @@ -44,11 +44,11 @@ jobs: - name: Install Rust if: steps.cache-linter.outputs.cache-hit != 'true' - uses: dtolnay/rust-toolchain@stable + uses: https://github.com/dtolnay/rust-toolchain@stable - - name: Rust Cache (Compiler Internals) + - name: Rust Cache if: steps.cache-linter.outputs.cache-hit != 'true' - uses: Swatinem/rust-cache@v2 + uses: https://github.com/Swatinem/rust-cache@v2 with: workspaces: "src/actions/somnus/core -> target" diff --git a/.forgejo/workflows/publish.yml b/.forgejo/workflows/publish.yml index 38c4f5b7c..129750e52 100644 --- a/.forgejo/workflows/publish.yml +++ b/.forgejo/workflows/publish.yml @@ -76,16 +76,16 @@ jobs: path: ./publisher-bin key: publisher-v1-${{ runner.os }}-${{ hashFiles('src/actions/publish/**/*.rs', 'src/actions/publish/Cargo.toml', 'src/actions/publish/Cargo.lock') }} - - name: Install Rust - if: steps.cache-publisher.outputs.cache-hit != 'true' - uses: dtolnay/rust-toolchain@stable - - name: Rust Cache if: steps.cache-publisher.outputs.cache-hit != 'true' - uses: Swatinem/rust-cache@v2 + https://github.com/Swatinem/rust-cache@v2 with: workspaces: "src/actions/publish -> target" + - name: Install Rust + if: steps.cache-publisher.outputs.cache-hit != 'true' + uses: https://github.com/dtolnay/rust-toolchain@stable + - name: Build Publisher if: steps.cache-publisher.outputs.cache-hit != 'true' run: | diff --git a/.forgejo/workflows/sync.yml b/.forgejo/workflows/sync.yml index 27537197b..d493b55fd 100644 --- a/.forgejo/workflows/sync.yml +++ b/.forgejo/workflows/sync.yml @@ -32,11 +32,11 @@ jobs: - name: Install Rust if: steps.cache-coresync.outputs.cache-hit != 'true' - uses: dtolnay/rust-toolchain@stable + uses: https://github.com/dtolnay/rust-toolchain@stable - - name: Rust Cache (Compiler Internals) + - name: Rust Cache if: steps.cache-coresync.outputs.cache-hit != 'true' - uses: Swatinem/rust-cache@v2 + uses: https://github.com/Swatinem/rust-cache@v2 with: workspaces: "src/actions/coresync -> target"