File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,12 @@ jobs:
191
191
run : |
192
192
make --output-sync=line -j lint
193
193
194
+ - name : Check workflow files
195
+ run : |
196
+ bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) 1.6.22
197
+ ./actionlint -color -shellcheck= -ignore "set-output"
198
+ shell : bash
199
+
194
200
gen :
195
201
timeout-minutes : 8
196
202
runs-on : ${{ github.repository_owner == 'coder' && 'depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
Original file line number Diff line number Diff line change 11
11
# While GitHub's toaster runners are likelier to flake, we want consistency
12
12
# between this environment and the regular test environment for DataDog
13
13
# statistics and to only show real workflow threats.
14
- runs-on : " depot-ubuntu-22.04-8"
14
+ runs-on : ${{ github.repository_owner == 'coder' && ' depot-ubuntu-22.04-8' || 'ubuntu-latest' }}
15
15
# This runner costs 0.016 USD per minute,
16
16
# so 0.016 * 240 = 3.84 USD per run.
17
17
timeout-minutes : 240
40
40
41
41
go-timing :
42
42
# We run these tests with p=1 so we don't need a lot of compute.
43
- runs-on : " depot-ubuntu-22.04"
43
+ runs-on : ${{ github.repository_owner == 'coder' && ' depot-ubuntu-22.04' || 'ubuntu-latest' }}
44
44
timeout-minutes : 10
45
45
steps :
46
46
- name : Checkout
You can’t perform that action at this time.
0 commit comments