File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ concurrency:
1010 group : ${{ github.ref }}-${{ github.head_ref }}-local-examples
1111 cancel-in-progress : true
1212
13+ permissions :
14+ contents : read # access to check out code and install dependencies
15+
1316jobs :
1417 local-examples :
1518 name : local examples
2023 steps :
2124 - uses : actions/checkout@v6
2225 - name : Set up Python
23- uses : actions/setup-python@v5
26+ uses : actions/setup-python@v6
2427 with :
2528 python-version : ${{ matrix.python-version }}
2629 - name : Install
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ concurrency:
1010 group : ${{ github.ref }}-${{ github.head_ref }}-unit-tests
1111 cancel-in-progress : true
1212
13+ permissions :
14+ contents : read # access to check out code and install dependencies
15+
1316jobs :
1417 unit-tests :
1518 name : unit tests
2023 steps :
2124 - uses : actions/checkout@v6
2225 - name : Set up Python
23- uses : actions/setup-python@v5
26+ uses : actions/setup-python@v6
2427 with :
2528 python-version : ${{ matrix.python-version }}
2629 - name : Install
Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ concurrency:
1010 group : ${{ github.ref }}-${{ github.head_ref }}-upstream-examples
1111 cancel-in-progress : true
1212
13+ permissions :
14+ contents : read # access to check out code and install dependencies
15+
1316jobs :
1417 upstream-examples :
1518 name : upstream examples
2831 sparse-checkout : |
2932 examples/
3033 - name : Set up Python
31- uses : actions/setup-python@v5
34+ uses : actions/setup-python@v6
3235 with :
3336 python-version : ${{ matrix.python-version }}
3437 - name : Install
You can’t perform that action at this time.
0 commit comments