Skip to content

Commit 526ae14

Browse files
committed
GitHub Actions: fix identification of additional CentOS 8 repositories
Since CentOS Linux 8.3.2011 repository names are all lowercase.
1 parent 25c7644 commit 526ae14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
if: startsWith(matrix.image, 'centos:8')
3737
run: |
3838
dnf -y install 'dnf-command(config-manager)'
39-
dnf config-manager --set-enabled AppStream PowerTools
39+
dnf config-manager --set-enabled appstream powertools
4040
- name: Install dependencies for libfds and IPFIXcol2 (CentOS)
4141
if: startsWith(matrix.image, 'centos')
4242
run: |

.github/workflows/packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
if: startsWith(matrix.image, 'centos:8')
106106
run: |
107107
dnf -y install 'dnf-command(config-manager)'
108-
dnf config-manager --set-enabled AppStream PowerTools
108+
dnf config-manager --set-enabled appstream powertools
109109
- name: Install dependencies for libfds and IPFIXcol2 (CentOS)
110110
if: startsWith(matrix.image, 'centos')
111111
run: |

0 commit comments

Comments
 (0)