Check-in [c9ff34669d]
Logged in as anonymous
Overview
Comment:bump checkout, drop creds
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c9ff34669d03edd3f5ed83644ae6e1221085dab866b8075386cc3e3435eb7bb9
User & Date: arcade on 2026-07-31 10:24:18.343
Other Links: manifest | tags
Context
2026-07-31
10:38
add deny.toml for checks check-in: f88aa03bf5 user: arcade tags: trunk
10:24
bump checkout, drop creds check-in: c9ff34669d user: arcade tags: trunk
2026-04-23
10:00
fix version (I missed one bump recently) check-in: 3b5fe61104 user: arcade tags: trunk
Changes
14
15
16
17
18
19
20
21


22
23
24
25
26
27
28
    name: Run rust-clippy analyzing and tests
    runs-on: ubuntu-latest
    if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
    permissions:
      contents: read
    steps:
      # SETUP
      - uses: actions/checkout@v6


      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - uses: mozilla-actions/sccache-action@v0.0.10

      # TESTS
      - name: Run tests
        run: cargo test --all-targets --all-features







|
>
>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    name: Run rust-clippy analyzing and tests
    runs-on: ubuntu-latest
    if: github.event_name == 'push' || (github.head_ref != 'master' && github.head_ref != 'release')
    permissions:
      contents: read
    steps:
      # SETUP
      - uses: actions/checkout@v7
        with:
          persist-credentials: false
      - uses: dtolnay/rust-toolchain@stable
      - uses: Swatinem/rust-cache@v2
      - uses: mozilla-actions/sccache-action@v0.0.10

      # TESTS
      - name: Run tests
        run: cargo test --all-targets --all-features