diff --git a/.github/workflows/update_deps.yml b/.github/workflows/update_deps.yml index 4fa4eef8f..5261f3f1f 100644 --- a/.github/workflows/update_deps.yml +++ b/.github/workflows/update_deps.yml @@ -37,21 +37,21 @@ jobs: - opensuse15-x64 steps: - name: install llvm on suse-based - if: startsWith(matrix.platform, "opensuse") + if: startsWith(matrix.platform, 'opensuse') run: | zypper install -y -t llvm - name: install llvm on redhat-based if: > - startsWith(matrix.platform, "amazonlinux") || - startsWith(matrix.platform, "centos") || - startsWith(matrix.platform, "fedora") || - startsWith(matrix.platform, "fedora") + startsWith(matrix.platform, 'amazonlinux') || + startsWith(matrix.platform, 'centos') || + startsWith(matrix.platform, 'fedora') || + startsWith(matrix.platform, 'fedora') run: | yum install -y llvm - name: install llvm on debian-based if: > - startsWith(matrix.platform, "debian") || - startsWith(matrix.platform, "ubuntu") + startsWith(matrix.platform, 'debian') || + startsWith(matrix.platform, 'ubuntu') run: | apt-get update apt-get install -yq llvm