Skip to content

Commit ace20ca

Browse files
committed
Fix soundness errors
1 parent 45793be commit ace20ca

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
name: vscode-swift-extension
4242
path: |
4343
*.vsix
44-
44+
4545
tests_release:
4646
name: Test Release
4747
needs: package
48-
uses: award999/github-workflows/.github/workflows/swift_package_test.yml@token
48+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
4949
with:
5050
needs_token: true
5151
# Linux
@@ -71,7 +71,7 @@ jobs:
7171
tests_insiders:
7272
name: Test Insiders
7373
needs: package
74-
uses: award999/github-workflows/.github/workflows/swift_package_test.yml@token
74+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
7575
with:
7676
needs_token: true
7777
# Linux

.github/workflows/scripts/setup-linux.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ apt-get update && apt-get install -y rsync curl gpg libasound2 libgbm1 libgtk-3-
2121

2222
mkdir -p $NVM_DIR
2323
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
24+
# shellcheck disable=SC1091
2425
. $NVM_DIR/nvm.sh && nvm install $NODE_VERSION
2526
echo "$NODE_PATH" >> "$GITHUB_PATH"
2627

2728
env | sort
2829

29-
if [ ! -z "$VSCODE_SWIFT_VSIX_ID" ]; then
30+
if [ -n "$VSCODE_SWIFT_VSIX_ID" ]; then
3031
npm ci --ignore-scripts
3132
npx tsx scripts/download_vsix.ts
3233
export VSCODE_SWIFT_VSIX="vscode-swift.vsix"

0 commit comments

Comments
 (0)