Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#398)
Browse files Browse the repository at this point in the history
* chore(deps): lock file maintenance

* --allow-writing-to-package-directory for swiftlint as per https://github.com/realm/SwiftLint/blob/main/CHANGELOG.md#breaking-3

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Florian Häser <[email protected]>
  • Loading branch information
renovate[bot] and haeser authored Feb 11, 2025
1 parent 3ce2bf6 commit 5ed49ba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ GEM
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.3.0)
aws-partitions (1.1031.0)
aws-sdk-core (3.214.1)
aws-partitions (1.1038.0)
aws-sdk-core (3.216.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.96.0)
aws-sdk-core (~> 3, >= 3.210.0)
aws-sdk-kms (1.97.0)
aws-sdk-core (~> 3, >= 3.216.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.177.0)
aws-sdk-core (~> 3, >= 3.210.0)
aws-sdk-s3 (1.178.0)
aws-sdk-core (~> 3, >= 3.216.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
aws-sigv4 (1.10.1)
aws-sigv4 (1.11.0)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
base64 (0.2.0)
Expand Down Expand Up @@ -86,8 +86,8 @@ GEM
colored2 (3.1.2)
commander (4.6.0)
highline (~> 2.0.0)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
concurrent-ruby (1.3.5)
connection_pool (2.5.0)
declarative (0.0.20)
digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0)
Expand Down Expand Up @@ -223,7 +223,7 @@ GEM
json (2.9.1)
jwt (2.10.1)
base64
logger (1.6.4)
logger (1.6.5)
mini_magick (4.13.2)
mini_mime (1.1.5)
minitest (5.25.4)
Expand Down
2 changes: 1 addition & 1 deletion JOSESwift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cd BuildTools\n\nSDKROOT=(xcrun --sdk macosx --show-sdk-path)\n\nswift package plugin swiftlint lint --lenient --config \"$SRCROOT/.swiftlint.yml\" \"$SRCROOT\"\n";
shellScript = "cd BuildTools\n\nSDKROOT=(xcrun --sdk macosx --show-sdk-path)\n\nswift package plugin --allow-writing-to-package-directory swiftlint lint --lenient --config \"$SRCROOT/.swiftlint.yml\" \"$SRCROOT\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ lane :lint_swiftlint do

sh "mkdir -p ../#{TEST_OUTPUT}/swiftlint/"
sh "rm -f ../#{TEST_OUTPUT}/swiftlint/report.sonarqube"
swiftlint_command = "cd ../BuildTools && swift package plugin swiftlint lint --quiet --config ../.swiftlint.yml --reporter sonarqube"
swiftlint_command = "cd ../BuildTools && swift package plugin --allow-writing-to-package-directory swiftlint lint --quiet --config ../.swiftlint.yml --reporter sonarqube"

sh "#{swiftlint_command} ../ > ../#{TEST_OUTPUT}/swiftlint/report.sonarqube"

Expand Down

0 comments on commit 5ed49ba

Please sign in to comment.