chore(deps): bump immutable from 5.1.5 to 5.1.9 #4013
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| permissions: {} | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - '[0-9]+.[0-9]+' | |
| pull_request: | |
| jobs: | |
| formatting_linting: | |
| name: Check for formatting or linting issues | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: cachix/install-nix-action@630ae543ea3a38a9a4166f03376c02c50f408342 # v31.11.0 | |
| - name: Build | |
| run: nix-shell --pure --run 'treefmt --ci' | |
| build_warning_nix: | |
| name: Build with warnings as errors using the environment provided by Nix | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - uses: cachix/install-nix-action@630ae543ea3a38a9a4166f03376c02c50f408342 # v31.11.0 | |
| - name: Build | |
| run: nix-shell --pure --run 'make SPHINXOPTS='-W' html' | |
| build_docker_image_theme_online_docs: | |
| name: Check build of the Docker image with the Tuleap online docs theme (docs.tuleap.com) | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Build image | |
| run: docker build -f online-docs/Dockerfile -t test-build . | |
| build_docker_image_linkcheck: | |
| name: Check build of the Docker image used to run linkcheck | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Build image | |
| run: docker build -f build-support/linkcheck-docker.dockerfile -t test-build-linkcheck . |