Skip to content

ci(tools): update actions/checkout digest to 8e8c483 (#13) #42

ci(tools): update actions/checkout digest to 8e8c483 (#13)

ci(tools): update actions/checkout digest to 8e8c483 (#13) #42

Workflow file for this run

---
# yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json
name: testing
"on":
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Install nix
uses: cachix/install-nix-action@0b0e072294b088b73964f1d72dfdac0951439dbd # v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
- name: Enable cachix
uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16
with:
name: devenv
- name: Update template
run: nix develop --impure . --command scripts/generate-template
- name: Test yamllint
run: nix develop --impure . --command yamllint .
...