From c36268312338c27edcaeb715e9b152af90fa7dff Mon Sep 17 00:00:00 2001 From: Jamil Date: Fri, 20 May 2022 10:40:00 -0700 Subject: [PATCH] Update update_deps.yml Use single quotes in YAML --- .github/workflows/update_deps.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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