Román Cárdenas vor 1 Jahr
Ursprung
Commit
8dd53c7141
2 geänderte Dateien mit 4 neuen und 2 gelöschten Zeilen
  1. 2 1
      .github/workflows/ci.yaml
  2. 2 1
      .github/workflows/clippy.yaml

+ 2 - 1
.github/workflows/ci.yaml

@@ -28,8 +28,9 @@ jobs:
     continue-on-error: ${{ matrix.experimental || false }}
     steps:
     - uses: actions/checkout@v3
-    - uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
+    - uses: dtolnay/rust-toolchain@master
       with:
+        toolchain: ${{ matrix.toolchain }}
         targets: ${{ matrix.target }}
     - name: Build library
       run: cargo build --target ${{ matrix.target }} ${{ matrix.cargo_flags }}

+ 2 - 1
.github/workflows/clippy.yaml

@@ -26,8 +26,9 @@ jobs:
     continue-on-error: ${{ matrix.experimental || false }}
     steps:
       - uses: actions/checkout@v3
-      - uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
+      - uses: dtolnay/rust-toolchain@master
         with:
+          toolchain: ${{ matrix.toolchain }}
           components: clippy
       - name: Run clippy
         run: cargo clippy --all ${{ matrix.cargo_flags }} -- -D warnings