Skip to content

build(deps): bump actions/checkout from 4.1.1 to 4.1.2 #281

build(deps): bump actions/checkout from 4.1.1 to 4.1.2

build(deps): bump actions/checkout from 4.1.1 to 4.1.2 #281

Workflow file for this run

name: Devcontainer
# When a pull request is opened that changes the Devcontainer configuration,
# ensure that the container continues to build properly.
on:
pull_request:
paths:
- .devcontainer/devcontainer.json
- .github/workflows/devcontainer.yml
- rust-toolchain
permissions:
contents: read
jobs:
rust-version:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v43-rust
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- shell: bash
run: |
# Extract current Rust version from the toolchain file.
version_regex='channel = "([0-9]+\.[0-9]+\.[0-9]+)"'
toolchain=$(cat rust-toolchain.toml)
if [[ $toolchain =~ $version_regex ]]; then
tc=${BASH_REMATCH[1]}
else
echo "::error file=rust-toolchain.toml::failed to parse rust-toolchain.toml"
exit 1
fi
dev=$(cargo version | cut -d' ' -f2)
if [ "$dev" != "$tc" ]; then
echo "::error file=rust-toolchain.toml,line=2::rust-toolchain ($tc) does not match devcontainer ($dev)"
exit 1
fi
devcontainer-image:
runs-on: ubuntu-latest
steps:
- uses: linkerd/dev/actions/setup-tools@v43
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- run: just-dev pull-dev-image