@@ -84,25 +84,25 @@ jobs:
84
84
outputs :
85
85
gha : ${{steps.filter.outputs.gha}}
86
86
gha_files : ${{steps.filter.outputs.gha_files}}
87
+
87
88
# The following all test both the relevant file condition & the CI config
88
89
# because a change in the CI workflows can affect the CI check results.
89
- python : |-
90
- ${{steps.filter.outputs.python}} || ${{steps.filter.outputs.ci}}
90
+ python : ${{steps.filter.outputs.python || steps.filter.outputs.ci}}
91
91
python_files : ${{steps.filter.outputs.python_files}}
92
- yaml : |-
93
- ${{steps.filter.outputs.yaml}} || ${{ steps.filter.outputs.ci}}
92
+
93
+ yaml : ${{steps.filter.outputs.yaml || steps.filter.outputs.ci}}
94
94
yaml_files : ${{steps.filter.outputs.yaml_files}}
95
- cff : |-
96
- ${{steps.filter.outputs.cff}} || ${{ steps.filter.outputs.ci}}
95
+
96
+ cff : ${{steps.filter.outputs.cff || steps.filter.outputs.ci}}
97
97
cff_files : ${{steps.filter.outputs.cff_files}}
98
- json : |-
99
- ${{steps.filter.outputs.json}} || ${{ steps.filter.outputs.ci}}
98
+
99
+ json : ${{steps.filter.outputs.json || steps.filter.outputs.ci}}
100
100
json_files : ${{steps.filter.outputs.json_files}}
101
- docker : |-
102
- ${{steps.filter.outputs.docker}} || ${{ steps.filter.outputs.ci}}
101
+
102
+ docker : ${{steps.filter.outputs.docker || steps.filter.outputs.ci}}
103
103
docker_files : ${{steps.filter.outputs.docker_files}}
104
- shell : |-
105
- ${{steps.filter.outputs.shell}} || ${{ steps.filter.outputs.ci}}
104
+
105
+ shell : ${{steps.filter.outputs.shell || steps.filter.outputs.ci}}
106
106
shell_files : ${{steps.filter.outputs.shell_files}}
107
107
steps :
108
108
# When invoked manually, use the given SHA to figure out the change list.
@@ -223,7 +223,7 @@ jobs:
223
223
run : echo '::add-matcher::.github/problem-matchers/black.json'
224
224
225
225
- name : Run format checks
226
- run : check/format-incremental ${{inputs.sha}}
226
+ run : check/format-incremental
227
227
228
228
python-mypy :
229
229
if : needs.changes.outputs.python == 'true'
@@ -385,7 +385,7 @@ jobs:
385
385
if : needs.changes.outputs.python == 'true'
386
386
name : Python compatibility checks
387
387
needs : [changes, setup]
388
- runs-on : ubuntu-20 .04
388
+ runs-on : ubuntu-22 .04
389
389
timeout-minutes : 15
390
390
steps :
391
391
- name : Check out a copy of the git repository
0 commit comments