File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636
3737 - name : List 'tests' nox sessions and required python versions
3838 id : set-matrix
39- run : echo "::set-output name=matrix::$(nox -s gha_list -- -s tests -v)"
39+ run : echo "::set-output name=matrix::$(nox --json -l -s tests -v)"
4040
4141 outputs :
4242 matrix : ${{ steps.set-matrix.outputs.matrix }} # save nox sessions list to outputs
6060 uses : actions/checkout@v4.1.1
6161
6262 - name : Install python ${{ matrix.nox_session.python }} for tests
63- uses : MatteoH2O1999/setup-python@v3.0.0 # actions/setup-python@v5.0.0
63+ uses : MatteoH2O1999/setup-python@v3.2.1 # actions/setup-python@v5.0.0
6464 id : set-py
6565 with :
6666 python-version : ${{ matrix.nox_session.python }}
Original file line number Diff line number Diff line change 1+ name : GitHub Actions Version Updater
2+
3+ # Controls when the action will run.
4+ on :
5+ workflow_dispatch :
6+ schedule :
7+ # Automatically run on every first day of the month
8+ - cron : ' 0 0 1 * *'
9+
10+ jobs :
11+ build :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4.1.1
16+ with :
17+ # [Required] Access token with `workflow` scope.
18+ token : ${{ secrets.WORKFLOW_SECRET }}
19+
20+ - name : Run GitHub Actions Version Updater
21+ uses : saadmk11/github-actions-version-updater@v0.8.1
22+ with :
23+ # [Required] Access token with `workflow` scope.
24+ token : ${{ secrets.WORKFLOW_SECRET }}
You can’t perform that action at this time.
0 commit comments