From 5b4f05b24ee39dd88ec992d4db73f64dc74a2979 Mon Sep 17 00:00:00 2001 From: Eduardo Flores Date: Sat, 7 Sep 2024 03:21:44 -0700 Subject: [PATCH] fix: github token --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 658f06b..9d959aa 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -25,12 +25,12 @@ jobs: - name: rust-clippy-check uses: actions-rs/clippy-check@v1.0.7 with: - token: $GITHUB_TOKEN + token: ${{ secrets.GITHUB_TOKEN }} toolchain: stable name: clippy - name: rust-rustfmt-check uses: mbrobbel/rustfmt-check@0.14.0 with: - token: $GITHUB_TOKEN + token: ${{ secrets.GITHUB_TOKEN }} commit-message: "chore: format"