mirror of
https://github.com/DeterminateSystems/determinate-nix-action.git
synced 2026-07-12 19:03:54 +00:00
Bumps the actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).
Updates `actions/checkout` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](de0fac2e45...df4cb1c069)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.3
dependency-type: direct:production
update-type: version-update:semver-patch
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
31 lines
904 B
YAML
31 lines
904 B
YAML
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
lints:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
id-token: "write"
|
|
contents: "read"
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
with:
|
|
persist-credentials: false
|
|
- uses: ./.
|
|
- run: nix develop -c typos
|
|
if: success() || failure()
|
|
- run: nix develop -c ruff check
|
|
if: success() || failure()
|
|
- run: nix develop -c ruff format --diff
|
|
if: success() || failure()
|
|
- run: nix develop -c shellcheck ./tools/*.sh
|
|
if: success() || failure()
|
|
- name: Regenerate the README to make sure it is unchanged
|
|
run: nix develop -c ./tools/generate.sh
|
|
if: success() || failure()
|
|
- name: Assert no changes were made
|
|
run: git diff --exit-code
|
|
if: success() || failure()
|