just playing with tangled
0
fork

Configure Feed

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

github: bump actions/checkout in the github-dependencies group

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


Updates `actions/checkout` from 4.1.3 to 4.1.4
- [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/1d96c772d19495a3b5c517cd2bc0cb401ea0529f...0ad4b8fadaa221de15dcec353f45205ec38ea70b)

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

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

authored by

dependabot[bot] and committed by
github-actions[bot]
ca02141b 3dad9d4a

+14 -14
+1 -1
.github/workflows/build-nix.yml
··· 19 19 20 20 name: flake check 21 21 steps: 22 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 22 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 23 23 with: 24 24 fetch-depth: 0 25 25 - uses: DeterminateSystems/nix-installer-action@de22e16c4711fca50c816cc9081563429d1cf563
+7 -7
.github/workflows/build.yml
··· 37 37 timeout-minutes: 15 38 38 39 39 steps: 40 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 40 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 41 41 42 42 # The default version of gpg installed on the runners is a version baked in with git 43 43 # which only contains the components needed by git and doesn't work for our test cases. ··· 80 80 name: Check protos 81 81 runs-on: ubuntu-latest 82 82 steps: 83 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 83 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 84 84 - uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 85 85 with: 86 86 toolchain: stable ··· 94 94 name: Check formatting 95 95 runs-on: ubuntu-latest 96 96 steps: 97 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 97 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 98 98 - uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 99 99 with: 100 100 toolchain: nightly ··· 105 105 name: Check that MkDocs can build the docs 106 106 runs-on: ubuntu-latest 107 107 steps: 108 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 108 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 109 109 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d 110 110 with: 111 111 python-version: 3.11 ··· 122 122 name: Check that MkDocs can build the docs with Poetry 1.3.2 123 123 runs-on: ubuntu-latest 124 124 steps: 125 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 125 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 126 126 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d 127 127 with: 128 128 python-version: 3.11 ··· 153 153 continue-on-error: ${{ matrix.checks == 'advisories' }} 154 154 155 155 steps: 156 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 156 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 157 157 - uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 158 158 with: 159 159 command: check ${{ matrix.checks }} ··· 164 164 checks: write 165 165 runs-on: ubuntu-latest 166 166 steps: 167 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 167 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 168 168 - uses: dtolnay/rust-toolchain@1482605bfc5719782e1267fd0c0cc350fe7646b8 169 169 with: 170 170 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@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 16 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 17 17 - uses: codespell-project/actions-codespell@94259cd8be02ad2903ba34a22d9c13de21a74461 18 18 with: 19 19 check_filenames: true
+1 -1
.github/workflows/docs.yml
··· 16 16 runs-on: ${{ matrix.os }} 17 17 18 18 steps: 19 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 19 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 20 20 - run: "git fetch origin gh-pages --depth=1" 21 21 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d 22 22 with:
+3 -3
.github/workflows/release.yml
··· 34 34 runs-on: ${{ matrix.os }} 35 35 steps: 36 36 - name: Checkout repository 37 - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 37 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 38 38 - name: Install packages (Ubuntu) 39 39 if: matrix.os == 'ubuntu-20.04' 40 40 run: | ··· 84 84 run: | 85 85 sudo apt-get update 86 86 sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools 87 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 87 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 88 88 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d 89 89 with: 90 90 python-version: 3.11 ··· 115 115 contents: write 116 116 117 117 steps: 118 - - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 118 + - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 119 119 - run: "git fetch origin gh-pages --depth=1" 120 120 - uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d 121 121 with:
+1 -1
.github/workflows/scorecards.yml
··· 21 21 22 22 steps: 23 23 - name: "Checkout code" 24 - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f 24 + uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b 25 25 with: 26 26 persist-credentials: false 27 27