Skip to content

Commit f021f62

Browse files
committed
Fix soundness errors
1 parent af1d993 commit f021f62

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
name: vscode-swift-extension
3838
path: |
3939
*.vsix
40-
40+
4141
tests_release:
4242
name: Test Release
4343
needs: package
44-
uses: award999/github-workflows/.github/workflows/swift_package_test.yml@token
44+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
4545
with:
4646
needs_token: true
4747
# Linux
@@ -65,7 +65,7 @@ jobs:
6565
tests_insiders:
6666
name: Test Insiders
6767
needs: package
68-
uses: award999/github-workflows/.github/workflows/swift_package_test.yml@token
68+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
6969
with:
7070
needs_token: true
7171
# Linux

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

+2-1
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)