|
13 | 13 |
|
14 | 14 | jobs: |
15 | 15 | getVersion: |
| 16 | + permissions: |
| 17 | + contents: read |
16 | 18 | # Don't run the cron builds on forks |
17 | 19 | if: github.event_name != 'schedule' || github.repository_owner == 'aws' |
18 | 20 | uses: ./.github/workflows/dafny_version.yml |
19 | 21 | getVerifyVersion: |
| 22 | + permissions: |
| 23 | + contents: read |
20 | 24 | if: github.event_name != 'schedule' || github.repository_owner == 'aws' |
21 | 25 | uses: ./.github/workflows/dafny_verify_version.yml |
22 | 26 | daily-ci-format: |
| 27 | + permissions: |
| 28 | + contents: read |
23 | 29 | needs: getVersion |
24 | 30 | if: github.event_name != 'schedule' || github.repository_owner == 'aws' |
25 | 31 | uses: ./.github/workflows/library_format.yml |
26 | 32 | with: |
27 | 33 | dafny: ${{needs.getVersion.outputs.version}} |
28 | 34 | daily-ci-codegen: |
| 35 | + permissions: |
| 36 | + contents: read |
29 | 37 | needs: getVersion |
30 | 38 | if: github.event_name != 'schedule' || github.repository_owner == 'aws' |
31 | 39 | uses: ./.github/workflows/ci_codegen.yml |
32 | 40 | with: |
33 | 41 | dafny: ${{needs.getVersion.outputs.version}} |
34 | 42 | daily-ci-verification: |
| 43 | + permissions: |
| 44 | + contents: read |
35 | 45 | needs: getVerifyVersion |
36 | 46 | if: github.event_name != 'schedule' || github.repository_owner == 'aws' |
37 | 47 | uses: ./.github/workflows/library_dafny_verification.yml |
38 | 48 | with: |
39 | 49 | dafny: ${{needs.getVerifyVersion.outputs.version}} |
40 | 50 | daily-ci-test-vector-verification: |
| 51 | + permissions: |
| 52 | + contents: read |
41 | 53 | needs: getVerifyVersion |
42 | 54 | uses: ./.github/workflows/test_vector_verification.yml |
43 | 55 | with: |
44 | 56 | dafny: ${{needs.getVerifyVersion.outputs.version}} |
45 | 57 | daily-ci-java: |
| 58 | + permissions: |
| 59 | + contents: read |
46 | 60 | needs: getVersion |
47 | 61 | uses: ./.github/workflows/ci_test_java.yml |
48 | 62 | with: |
49 | 63 | dafny: ${{needs.getVersion.outputs.version}} |
50 | 64 | daily-ci-java-test-vectors: |
| 65 | + permissions: |
| 66 | + contents: read |
51 | 67 | needs: getVersion |
52 | 68 | uses: ./.github/workflows/ci_test_vector_java.yml |
53 | 69 | with: |
54 | 70 | dafny: ${{needs.getVersion.outputs.version}} |
55 | 71 | daily-ci-java-examples: |
| 72 | + permissions: |
| 73 | + contents: read |
56 | 74 | needs: getVersion |
57 | 75 | uses: ./.github/workflows/ci_examples_java.yml |
58 | 76 | with: |
59 | 77 | dafny: ${{needs.getVersion.outputs.version}} |
60 | 78 | daily-ci-net: |
| 79 | + permissions: |
| 80 | + contents: read |
61 | 81 | needs: getVersion |
62 | 82 | uses: ./.github/workflows/ci_test_net.yml |
63 | 83 | with: |
64 | 84 | dafny: ${{needs.getVersion.outputs.version}} |
65 | 85 | daily-ci-rust: |
| 86 | + permissions: |
| 87 | + contents: read |
66 | 88 | needs: getVersion |
67 | 89 | uses: ./.github/workflows/library_rust_tests.yml |
68 | 90 | with: |
69 | 91 | dafny: ${{needs.getVersion.outputs.version}} |
70 | 92 | daily-ci-net-test-vectors: |
| 93 | + permissions: |
| 94 | + contents: read |
71 | 95 | needs: getVersion |
72 | 96 | uses: ./.github/workflows/ci_test_vector_net.yml |
73 | 97 | with: |
74 | 98 | dafny: ${{needs.getVersion.outputs.version}} |
75 | 99 | daily-ci-net-examples: |
| 100 | + permissions: |
| 101 | + contents: read |
76 | 102 | needs: getVersion |
77 | 103 | uses: ./.github/workflows/ci_examples_net.yml |
78 | 104 | with: |
79 | 105 | dafny: ${{needs.getVersion.outputs.version}} |
80 | 106 | notify: |
| 107 | + permissions: |
| 108 | + contents: read |
81 | 109 | needs: |
82 | 110 | [ |
83 | 111 | getVersion, |
|
0 commit comments