Skip to content

Commit 8bccd68

Browse files
authored
ci: standardize "apt-get install" step name (#6862)
For consistency and simplicity, name the `apt-get install` step just "install dependencies" in all jobs. Affected jobs: * check-c.yml: scan-build * check-c.yml: cppcheck Related commits: * 94e2ce2 ("Create build.yml (#3651)", 2020-10-01) * 0fa1182 ("build: test build with apparmor and selinux in CI", 2020-10-01)
1 parent c902890 commit 8bccd68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-c.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
6060
- name: update package information
6161
run: sudo apt-get update -qy
62-
- name: install clang-tools-14 and dependencies
62+
- name: install dependencies
6363
run: >
6464
sudo apt-get install -qy
6565
clang-tools-14 libapparmor-dev libselinux1-dev
@@ -92,7 +92,7 @@ jobs:
9292
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
9393
- name: update package information
9494
run: sudo apt-get update -qy
95-
- name: install cppcheck
95+
- name: install dependencies
9696
run: sudo apt-get install -qy cppcheck
9797
- name: configure
9898
run: >

0 commit comments

Comments
 (0)