mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [mhils/workflows](https://github.com/mhils/workflows) | `481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6` | `af886cbabab992a8e7db75c6af3516af2b1f5a1c` | | [mhils/workflows/.github/workflows/python-build.yml](https://github.com/mhils/workflows) | `481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6` | `af886cbabab992a8e7db75c6af3516af2b1f5a1c` | | [mhils/workflows/.github/workflows/alls-green.yml](https://github.com/mhils/workflows) | `481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6` | `af886cbabab992a8e7db75c6af3516af2b1f5a1c` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3.6.0` | `3.7.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.8.0` | `5.10.0` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | Updates `mhils/workflows` from 481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6 to af886cbabab992a8e7db75c6af3516af2b1f5a1c - [Release notes](https://github.com/mhils/workflows/releases) - [Commits](481eaf3cc2...af886cbaba) Updates `mhils/workflows/.github/workflows/python-build.yml` from 481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6 to af886cbabab992a8e7db75c6af3516af2b1f5a1c - [Release notes](https://github.com/mhils/workflows/releases) - [Commits](481eaf3cc2...af886cbaba) Updates `mhils/workflows/.github/workflows/alls-green.yml` from 481eaf3cc2ad8eb664a4c9a20cc635d46e02b5c6 to af886cbabab992a8e7db75c6af3516af2b1f5a1c - [Release notes](https://github.com/mhils/workflows/releases) - [Commits](481eaf3cc2...af886cbaba) Updates `docker/setup-qemu-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](29109295f8...c7c5346462) Updates `docker/metadata-action` from 5.8.0 to 5.10.0 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](c1e51972af...c299e40c65) Updates `actions/checkout` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: mhils/workflows dependency-version: af886cbabab992a8e7db75c6af3516af2b1f5a1c dependency-type: direct:production dependency-group: github-actions - dependency-name: mhils/workflows/.github/workflows/python-build.yml dependency-version: af886cbabab992a8e7db75c6af3516af2b1f5a1c dependency-type: direct:production dependency-group: github-actions - dependency-name: mhils/workflows/.github/workflows/alls-green.yml dependency-version: af886cbabab992a8e7db75c6af3516af2b1f5a1c dependency-type: direct:production dependency-group: github-actions - dependency-name: docker/setup-qemu-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: 5.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: autofix.ci
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
autofix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: mhils/workflows/checkout@af886cbabab992a8e7db75c6af3516af2b1f5a1c
|
|
- uses: mhils/workflows/setup-uv@af886cbabab992a8e7db75c6af3516af2b1f5a1c
|
|
|
|
# If we need to update the lockfile (--check returns an error),
|
|
# make sure to upgrade everything.
|
|
- run: uv lock --check || uv lock --upgrade
|
|
|
|
- uses: mhils/workflows/uv-sync@af886cbabab992a8e7db75c6af3516af2b1f5a1c
|
|
|
|
- run: ruff check --fix-only .
|
|
- run: ruff format .
|
|
|
|
- run: web/gen/all
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version-file: .github/node-version.txt
|
|
- run: npm ci
|
|
working-directory: web
|
|
- run: npm run eslint
|
|
working-directory: web
|
|
continue-on-error: true
|
|
- run: npm run prettier
|
|
working-directory: web
|
|
|
|
- uses: mhils/add-pr-ref-in-changelog@main
|
|
|
|
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
|