mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
Bumps the github-actions group with 3 updates: [install-pinned/ruff](https://github.com/install-pinned/ruff), [autofix-ci/action](https://github.com/autofix-ci/action) and [actions/setup-node](https://github.com/actions/setup-node). Updates `install-pinned/ruff` from f3fd6b89f77ff37a32e69cd2da72e0fc6e21f837 to 8876fcad1732d3dc660068908bbf5cdeeaa9d264 - [Release notes](https://github.com/install-pinned/ruff/releases) - [Commits](f3fd6b89f7...8876fcad17) Updates `autofix-ci/action` from 1.1 to 1.3 - [Release notes](https://github.com/autofix-ci/action/releases) - [Commits](8caa572fd2...d3e591514b) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: install-pinned/ruff dependency-type: direct:production dependency-group: github-actions - dependency-name: autofix-ci/action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-node 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>
36 lines
1,008 B
YAML
36 lines
1,008 B
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version (major.minor.patch)'
|
|
required: true
|
|
type: string
|
|
skip-branch-status-check:
|
|
description: 'Skip CI status check.'
|
|
default: false
|
|
required: false
|
|
type: boolean
|
|
|
|
permissions:
|
|
actions: write
|
|
contents: write
|
|
|
|
jobs:
|
|
release:
|
|
environment: deploy-release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
token: ${{ secrets.GH_PUSH_TOKEN }} # this token works to push to the protected main branch.
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: .github/node-version.txt
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version-file: .github/python-version.txt
|
|
- run: ./release/release.py ${{ inputs.version }} ${{ inputs.skip-branch-status-check }}
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this token works with the GraphQL API
|