diff --git a/.forgejo/workflows/push-main.yml b/.forgejo/workflows/push-main.yml index f36fd3a..ada5d46 100644 --- a/.forgejo/workflows/push-main.yml +++ b/.forgejo/workflows/push-main.yml @@ -22,14 +22,14 @@ jobs: with: fetch-depth: 0 - name: Run release-plz release-pr - uses: https://git.kemitix.net/kemitix/rust@be47ad0bab99ebd74de7cfdbdcde14780a680991 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: args: release-plz release-pr --backend gitea --git-token ${GITHUB_TOKEN} env: GITHUB_TOKEN: ${{ secrets.FORGEJO_TOKEN }} CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} - name: Run release-plz release - uses: https://git.kemitix.net/kemitix/rust@be47ad0bab99ebd74de7cfdbdcde14780a680991 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: args: release-plz release --backend gitea --git-token ${GITHUB_TOKEN} env: diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index b6a2cc3..20575cf 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -18,21 +18,21 @@ jobs: uses: actions/checkout@v4 - name: Format - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: - args: fmt --all -- --check + args: cargo fmt --all -- --check - name: Clippy - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: - args: clippy + args: cargo clippy - name: Build - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: - args: build + args: cargo build - name: Test - uses: https://git.kemitix.net/kemitix/rust@v1.80.0-1 + uses: https://git.kemitix.net/kemitix/rust@v1.80.0-2 with: - args: test + args: cargo test