File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 analyze :
1111 name : Analyze (${{ matrix.language }})
12- runs-on : ${{ ' ubuntu-latest' }}
12+ runs-on : ubuntu-latest
1313 permissions :
1414 security-events : write
1515 packages : read
2828 steps :
2929 - name : Checkout repository
3030 uses : actions/checkout@v4
31+ with :
32+ persist-credentials : false
3133 - name : Initialize CodeQL
3234 uses : github/codeql-action/init@v3
3335 with :
Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 steps :
1414 - uses : actions/checkout@v4
15+ with :
16+ persist-credentials : false
1517 - run : |
1618 wget -q https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz
1719 tar -xvf shellcheck-stable.linux.x86_64.tar.xz
@@ -22,12 +24,16 @@ jobs:
2224 name : Hadolint
2325 steps :
2426 - uses : actions/checkout@v4
27+ with :
28+ persist-credentials : false
2529 - run : wget -q https://github.com/hadolint/hadolint/releases/download/v2.12.0/hadolint-Linux-x86_64 -O hadolint; chmod +x hadolint ; find . -type f \( -name "Dockerfile*" \) -print0 | xargs -n 1 -0 ./hadolint ;
2630 gofmt-imports :
2731 runs-on : ubuntu-latest
2832 name : Go Fmt and Go Import
2933 steps :
3034 - uses : actions/checkout@v4
35+ with :
36+ persist-credentials : false
3137 - uses : actions/setup-go@v5
3238 with :
3339 go-version-file : ' go.mod'
4248 name : lint
4349 steps :
4450 - uses : actions/checkout@v4
51+ with :
52+ persist-credentials : false
4553 - uses : actions/setup-go@v5
4654 with :
4755 go-version-file : ' go.mod'
Original file line number Diff line number Diff line change 1111 runs-on : ubuntu-latest
1212 steps :
1313 - uses : actions/checkout@v4
14+ with :
15+ persist-credentials : false
1416 - name : Set up Go
1517 uses : actions/setup-go@v5
1618 with :
2123 runs-on : ubuntu-latest
2224 steps :
2325 - uses : actions/checkout@v4
26+ with :
27+ persist-credentials : false
2428 - name : Set up Go
2529 uses : actions/setup-go@v5
2630 with :
3135 runs-on : ubuntu-latest
3236 steps :
3337 - uses : actions/checkout@v4
38+ with :
39+ persist-credentials : false
3440 - name : Set up Go
3541 uses : actions/setup-go@v5
3642 with :
You can’t perform that action at this time.
0 commit comments