mirror of
https://github.com/upx/upx
synced 2025-10-12 20:59:43 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
619 B
YAML
22 lines
619 B
YAML
# Copyright (C) Markus Franz Xaver Johannes Oberhumer
|
|
# see https://github.com/crate-ci/typos
|
|
|
|
name: 'Misc - Spell check'
|
|
on:
|
|
schedule: [cron: '55 0 * * 3'] # run weekly Wednesday 00:55 UTC
|
|
workflow_dispatch:
|
|
env:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
jobs:
|
|
job-spell-check:
|
|
if: github.repository_owner == 'upx'
|
|
name: 'Spell check'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Check out code'
|
|
uses: actions/checkout@v4
|
|
with: { submodules: false }
|
|
- name: 'Spell check with crate-ci/typos'
|
|
uses: crate-ci/typos@master
|
|
with: { config: ./.github/typos_config.toml }
|