File tree Expand file tree Collapse file tree 7 files changed +68
-5
lines changed Expand file tree Collapse file tree 7 files changed +68
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : build
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
concurrency :
4
13
group : ${{ github.workflow }}-${{ github.ref }}
5
14
cancel-in-progress : true
Original file line number Diff line number Diff line change 1
1
name : codeql
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
on :
4
13
push :
5
14
branches :
6
15
- ' master'
7
16
- ' v[0-9]*'
8
17
pull_request :
9
18
10
- permissions :
11
- actions : read
12
- contents : read
13
- security-events : write
14
-
15
19
env :
16
20
GO_VERSION : " 1.22"
17
21
18
22
jobs :
19
23
codeql :
24
+ permissions :
25
+ actions : read
26
+ contents : read
27
+ security-events : write
28
+
20
29
runs-on : ubuntu-24.04
21
30
steps :
22
31
-
Original file line number Diff line number Diff line change 1
1
name : docs-release
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
on :
4
13
workflow_dispatch :
5
14
inputs :
Original file line number Diff line number Diff line change 3
3
# https://github.com/docker/docker.github.io/blob/98c7c9535063ae4cd2cd0a31478a21d16d2f07a3/docker-bake.hcl#L34-L36
4
4
name : docs-upstream
5
5
6
+ # Default to 'contents: read', which grants actions to read commits.
7
+ #
8
+ # If any permission is set, any permission not included in the list is
9
+ # implicitly set to "none".
10
+ #
11
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
12
+ permissions :
13
+ contents : read
14
+
6
15
concurrency :
7
16
group : ${{ github.workflow }}-${{ github.ref }}
8
17
cancel-in-progress : true
Original file line number Diff line number Diff line change 1
1
name : e2e
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
concurrency :
4
13
group : ${{ github.workflow }}-${{ github.ref }}
5
14
cancel-in-progress : true
Original file line number Diff line number Diff line change 1
1
name : labeler
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
concurrency :
4
13
group : ${{ github.workflow }}-${{ github.ref }}
5
14
cancel-in-progress : true
Original file line number Diff line number Diff line change 1
1
name : validate
2
2
3
+ # Default to 'contents: read', which grants actions to read commits.
4
+ #
5
+ # If any permission is set, any permission not included in the list is
6
+ # implicitly set to "none".
7
+ #
8
+ # see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
9
+ permissions :
10
+ contents : read
11
+
3
12
concurrency :
4
13
group : ${{ github.workflow }}-${{ github.ref }}
5
14
cancel-in-progress : true
You can’t perform that action at this time.
0 commit comments