Skip to content

Commit 3921c20

Browse files
committed
Fix GitHub Actions: Remove md5sum package installation
- md5sum is part of coreutils which is already installed on Ubuntu - Removed unnecessary package installation that was causing errors - GitHub Actions should now run successfully
1 parent e1e0520 commit 3921c20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
# Install additional tools
32-
sudo apt-get install -y md5sum
32+
# md5sum is part of coreutils, which is already installed
33+
# No additional installation needed
3334
3435
- name: Run shellcheck
3536
run: |

0 commit comments

Comments
 (0)