Skip to content

Commit dc92c22

Browse files
authored
fix(deps): use exact versions (#394)
1 parent a167161 commit dc92c22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-internal-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
latest=$(npm view "$dep" version)
3434
echo "Upgrading $dep to $latest"
3535
# Use jq to update the version in package.json
36-
jq --arg section "$section" --arg dep "$dep" --arg ver "^$latest" \
36+
jq --arg section "$section" --arg dep "$dep" --arg ver "$latest" \
3737
'(.[$section][$dep]) |= $ver' package.json > package.json.tmp && mv package.json.tmp package.json
3838
done
3939
done

0 commit comments

Comments
 (0)