Skip to content

Commit

Permalink
Use older version of SDK that still supports showSettingsWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
dz0ny committed Jan 4, 2024
1 parent 6b48418 commit 1e8e9ee
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "latest-stable"
xcode-version: "14.3"

- name: "Import Certificate: Development"
env:
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "latest-stable"
xcode-version: "14.3"
- name: Install sentry-cli
run: brew install getsentry/tools/sentry-cli
- name: "Import Certificate: Development"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "latest-stable"
xcode-version: "14.3"
- name: Repository checkout
uses: actions/checkout@v3
- name: Cache mint modules
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
# steps:
# - uses: maxim-lobanov/setup-xcode@v1
# with:
# xcode-version: "latest-stable"
# xcode-version: "14.3"
# - name: "Import Certificate: Development"
# env:
# DEVELOPMENT_CERTIFICATE_DATA: ${{ secrets.DEVELOPMENT_CERTIFICATE_DATA }}
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
repo-token-user-login: "github-actions[bot]"
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "latest-stable"
xcode-version: "14.3"
- name: "Import Certificate: Development"
env:
DEVELOPMENT_CERTIFICATE_DATA: ${{ secrets.DEVELOPMENT_CERTIFICATE_DATA }}
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
repo-token-user-login: "github-actions[bot]"
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "latest-stable"
xcode-version: "14.3"
- name: "Import Certificate: Development"
env:
DEVELOPMENT_CERTIFICATE_DATA: ${{ secrets.DEVELOPMENT_CERTIFICATE_DATA }}
Expand Down
4 changes: 3 additions & 1 deletion Pareto Security.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@
attributes = {
BuildIndependentTargetsInParallel = YES;
LastSwiftUpdateCheck = 1300;
LastUpgradeCheck = 1420;
LastUpgradeCheck = 1510;
TargetAttributes = {
4F6A92EE26C555C6006C2F2D = {
CreatedOnToolsVersion = 13.0;
Expand Down Expand Up @@ -1457,6 +1457,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
Expand Down Expand Up @@ -1521,6 +1522,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
CLANG_ANALYZER_NONNULL = YES;
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1420"
LastUpgradeVersion = "1510"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion Pareto/Checks/System Integrity/NoUnusedUsers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class NoUnusedUsers: ParetoCheck {
}

override var TitleOFF: String {
"Unrequired user accounts are present(" + accounts.joined(separator: ",") + ")"
"Unrequired user accounts are present, review(" + accounts.joined(separator: ",") + ")"
}

var accounts: [String] {
Expand Down
2 changes: 1 addition & 1 deletion Pareto/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>5310</string>
<string>5315</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit 1e8e9ee

Please sign in to comment.