File tree 5 files changed +30
-3
lines changed
5 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,13 @@ jobs:
110
110
options : --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE
111
111
112
112
steps :
113
+ - name : " Checkout dependencies"
114
+ shell : bash
115
+ run : |
116
+ gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
117
+ tdnf -y update
118
+ tdnf -y install ca-certificates git
119
+
113
120
- uses : actions/checkout@v4
114
121
with :
115
122
fetch-depth : 0
Original file line number Diff line number Diff line change @@ -288,6 +288,13 @@ jobs:
288
288
options : --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE
289
289
290
290
steps :
291
+ - name : " Checkout dependencies"
292
+ shell : bash
293
+ run : |
294
+ gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
295
+ tdnf -y update
296
+ tdnf -y install ca-certificates git
297
+
291
298
- uses : actions/checkout@v4
292
299
with :
293
300
fetch-depth : 0
Original file line number Diff line number Diff line change 96
96
options : " --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE"
97
97
98
98
steps :
99
+ - name : " Checkout dependencies"
100
+ if : ${{ matrix.platform.os == 'azure-linux' }}
101
+ shell : bash
102
+ run : |
103
+ gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
104
+ tdnf -y update
105
+ tdnf -y install ca-certificates git
106
+
99
107
- uses : actions/checkout@v4
100
108
with :
101
109
fetch-depth : 0
Original file line number Diff line number Diff line change 92
92
options : " --user root --publish-all --cap-add NET_ADMIN --cap-add NET_RAW --cap-add SYS_PTRACE"
93
93
94
94
steps :
95
+ - name : " Checkout dependencies"
96
+ if : ${{ matrix.platform.os == 'azure-linux' }}
97
+ shell : bash
98
+ run : |
99
+ gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
100
+ tdnf -y update
101
+ tdnf -y install ca-certificates git
102
+
95
103
- uses : actions/checkout@v4
96
104
with :
97
105
fetch-depth : 0
Original file line number Diff line number Diff line change 4
4
5
5
set -ex
6
6
7
- gpg --import /etc/pki/rpm-gpg/MICROSOFT-RPM-GPG-KEY
8
- tdnf -y update
9
-
10
7
# Source control
11
8
tdnf -y install ca-certificates git
12
9
You can’t perform that action at this time.
0 commit comments