/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/ssh-debug.yml
62 строки
2 KB
Daniel A. Wozniak
Audit and fix remaining Python 3.11 references in CI pipelines
11 май 2026, 22:53
11 май 2026, 22:53
dec845f
Код
Авторство
О чём код?
name: SSH Debug run-name: "SSH Debug ${{ inputs.runner }}" on: workflow_dispatch: inputs: runner: type: string required: True description: The runner to start a tunnel on. offer: type: string required: True description: SDP Offer public_key: type: string required: True description: Your public key for ssh access. debug: required: false type: boolean default: false description: Run sshd with debug enabled. ci-python-version: type: string required: false default: "3.14" description: > Python version to use for workflow run jobs: debug: runs-on: ${{ inputs.runner }} if: ${{ inputs.runner }} environment: ci steps: - name: Checkout Source Code uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - name: Set Up Python ${{ inputs.ci-python-version }} uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 with: python-version: "${{ inputs.ci-python-version }}" - name: Setup Python Tools Scripts uses: ./.github/actions/setup-python-tools-scripts with: cache-prefix: ssh-debug - name: Install Nox run: | python3 -m pip install 'nox==2022.8.7' env: PIP_INDEX_URL: https://pypi.org/simple - uses: ./.github/actions/ssh-tunnel with: public_key: ${{ inputs.public_key }} offer: ${{ inputs.offer }} debug: ${{ inputs.debug }}