File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ concurrency:
2727
2828jobs :
2929 build :
30- runs-on : ubuntu-latest
30+ runs-on : ${{ vars.RUNNER || ' ubuntu-latest' }}
3131 steps :
3232 - name : Check out repository
3333 uses : actions/checkout@v7.0.0
3434
3535 - name : Install Python
36- uses : actions/setup-python@v6.2 .0
36+ uses : actions/setup-python@v6.3 .0
3737 with :
3838 python-version : " 3.13"
3939
5656
5757 deploy :
5858 needs : build
59- runs-on : ubuntu-latest
59+ runs-on : ${{ vars.RUNNER || ' ubuntu-latest' }}
6060 environment :
6161 name : github-pages
6262 url : ${{ steps.deployment.outputs.page_url }}
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ permissions:
77 contents : read
88jobs :
99 validate :
10- runs-on : ubuntu-latest
10+ runs-on : ${{ vars.RUNNER || ' ubuntu-latest' }}
1111 steps :
1212 - uses : actions/checkout@v7.0.0
1313 - name : Install zsh (for shell-portability checks)
1414 run : sudo apt-get update -qq && sudo apt-get install -y -qq zsh
15- - uses : actions/setup-python@v6.2 .0
15+ - uses : actions/setup-python@v6.3 .0
1616 with :
1717 python-version : " 3.13"
1818 - run : pip install --quiet pyyaml
You can’t perform that action at this time.
0 commit comments