File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
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
+
12
+ concurrency :
13
+ group : ${{ github.workflow }}-${{ github.ref }}
14
+ cancel-in-progress : true
15
+
3
16
on :
4
17
workflow_dispatch :
5
18
push :
13
26
jobs :
14
27
build :
15
28
runs-on : ubuntu-24.04
29
+ timeout-minutes : 60 # guardrails timeout for the whole job
16
30
strategy :
17
31
fail-fast : false
18
32
matrix :
@@ -31,10 +45,10 @@ jobs:
31
45
steps :
32
46
-
33
47
name : Checkout
34
- uses : actions/checkout@v3
48
+ uses : actions/checkout@v4
35
49
-
36
50
name : Set up Docker Buildx
37
- uses : docker/setup-buildx-action@v1
51
+ uses : docker/setup-buildx-action@v3
38
52
-
39
53
name : Build
40
54
run : |
You can’t perform that action at this time.
0 commit comments