Skip to content

Commit 8ca7597

Browse files
oshadmigithub-actions[bot]
authored andcommitted
MOD-11752: Fix snapshot upload in rockylinux - use dnf instead of yum (#7011)
(cherry picked from commit cbad26d)
1 parent a80eb93 commit 8ca7597

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/task-get-linux-configurations.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,11 @@ jobs:
141141
if rocky_version in x86_platforms:
142142
x86_include.append({
143143
'OS': rocky_version,
144-
'pre-deps': "yum update -y && yum install -y git"})
144+
'pre-deps': "dnf update -y && dnf install -y git"})
145145
if rocky_version in arm_platforms:
146146
arm_include.append({
147147
'OS': rocky_version,
148-
'pre-deps': "yum update -y && yum install -y git"})
148+
'pre-deps': "dnf update -y && dnf install -y git"})
149149
150150
151151

0 commit comments

Comments
 (0)