|
16 | 16 | mypy: |
17 | 17 | runs-on: ubuntu-latest |
18 | 18 | steps: |
19 | | - - uses: actions/checkout@v3 |
| 19 | + - uses: actions/checkout@v4 |
| 20 | + with: |
| 21 | + persist-credentials: false |
20 | 22 | - uses: actions/setup-python@v4 |
21 | 23 | - run: pip config set global.break-system-packages 1 |
22 | 24 | - run: pip install mypy |
|
27 | 29 | darker: |
28 | 30 | runs-on: ubuntu-latest |
29 | 31 | steps: |
30 | | - - uses: actions/checkout@v3 |
| 32 | + - uses: actions/checkout@v4 |
31 | 33 | with: |
32 | 34 | fetch-depth: 0 |
| 35 | + persist-credentials: false |
33 | 36 | - uses: actions/setup-python@v4 |
34 | 37 | - uses: akaihola/[email protected] |
35 | 38 | with: |
|
48 | 51 | sudo pip3 config set global.break-system-packages 1 |
49 | 52 | sudo pip3 install pylint |
50 | 53 |
|
51 | | - - uses: actions/checkout@v3 |
| 54 | + - uses: actions/checkout@v4 |
| 55 | + with: |
| 56 | + persist-credentials: false |
52 | 57 |
|
53 | 58 | - name: 'Run pylint --errors-only' |
54 | 59 | run: | |
@@ -77,19 +82,22 @@ jobs: |
77 | 82 | sudo pip3 config set global.break-system-packages 1 |
78 | 83 | sudo pip3 install pylint |
79 | 84 |
|
80 | | - - uses: actions/checkout@v3 |
| 85 | + - uses: actions/checkout@v4 |
81 | 86 | with: |
82 | 87 | path: osc-pr |
| 88 | + persist-credentials: false |
83 | 89 |
|
84 | | - - uses: actions/checkout@v3 |
| 90 | + - uses: actions/checkout@v4 |
85 | 91 | with: |
86 | 92 | ref: ${{ github.event.pull_request.base.sha }} |
87 | 93 | path: osc-master |
| 94 | + persist-credentials: false |
88 | 95 |
|
89 | | - - uses: actions/checkout@v3 |
| 96 | + - uses: actions/checkout@v4 |
90 | 97 | with: |
91 | 98 | repository: ${{ matrix.plugin_repository }} |
92 | 99 | path: plugin |
| 100 | + persist-credentials: false |
93 | 101 |
|
94 | 102 | - name: 'Install dependencies from pip' |
95 | 103 | run: | |
|
0 commit comments