just playing with tangled
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

github: bump the github-dependencies group with 1 update

Bumps the github-dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout).

- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/c85c95e3d7251135ab7dc9ce3241c5835cc595a9...f43a0e5ff2bd294095638e18286ca9a3d1956744)

---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: github-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>

authored by

dependabot[bot] and committed by
github-actions[bot]
44d1472c ac448202

+9 -9
+5 -5
.github/workflows/build.yml
··· 25 25 runs-on: ${{ matrix.os }} 26 26 27 27 steps: 28 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 28 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 29 29 - name: Install Rust 30 30 uses: dtolnay/rust-toolchain@0e66bd3e6b38ec0ad5312288c83e47c143e6b09e 31 31 with: ··· 41 41 name: Check protos 42 42 runs-on: ubuntu-latest 43 43 steps: 44 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 44 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 45 45 - uses: dtolnay/rust-toolchain@0e66bd3e6b38ec0ad5312288c83e47c143e6b09e 46 46 with: 47 47 toolchain: stable ··· 55 55 name: Check formatting 56 56 runs-on: ubuntu-latest 57 57 steps: 58 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 58 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 59 59 - uses: dtolnay/rust-toolchain@0e66bd3e6b38ec0ad5312288c83e47c143e6b09e 60 60 with: 61 61 toolchain: nightly ··· 74 74 continue-on-error: ${{ matrix.checks == 'advisories' }} 75 75 76 76 steps: 77 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 77 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 78 78 - uses: EmbarkStudios/cargo-deny-action@a50c7d5f86370e02fae8472c398f15a36e517bb8 79 79 with: 80 80 command: check ${{ matrix.checks }} ··· 85 85 checks: write 86 86 runs-on: ubuntu-latest 87 87 steps: 88 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 88 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 89 89 - uses: dtolnay/rust-toolchain@0e66bd3e6b38ec0ad5312288c83e47c143e6b09e 90 90 with: 91 91 toolchain: stable
+1 -1
.github/workflows/codespell.yml
··· 13 13 name: Codespell 14 14 runs-on: ubuntu-latest 15 15 steps: 16 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 16 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 17 17 - uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 18 18 with: 19 19 check_filenames: true
+1 -1
.github/workflows/nix-linux.yml
··· 19 19 name: nix-build 20 20 timeout-minutes: 20 21 21 steps: 22 - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 22 + - uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 23 23 with: 24 24 fetch-depth: 0 25 25 - uses: DeterminateSystems/nix-installer-action@65d7c888b2778e8cf30a07a88422ccb23499bfb8
+1 -1
.github/workflows/release.yml
··· 31 31 runs-on: ${{ matrix.os }} 32 32 steps: 33 33 - name: Checkout repository 34 - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 34 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 35 35 - name: Install packages (Ubuntu) 36 36 if: matrix.os == 'ubuntu-20.04' 37 37 run: |
+1 -1
.github/workflows/scorecards.yml
··· 21 21 22 22 steps: 23 23 - name: "Checkout code" 24 - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 24 + uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 25 25 with: 26 26 persist-credentials: false 27 27