Skip to content

Commit fc36f5b

Browse files
authored
fix: change default branch from master to main (#290)
1 parent f6fb6ad commit fc36f5b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
env:

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Lint
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88
workflow_dispatch:
99

1010
env:

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let package = Package(
1212
.library(name: "SmithyTestUtil", targets: ["SmithyTestUtil"])
1313
],
1414
dependencies: [
15-
.package(name: "AwsCrt", url: "https://github.com/awslabs/aws-crt-swift", .branch("master")),
15+
.package(name: "AwsCrt", url: "https://github.com/awslabs/aws-crt-swift", .branch("main")),
1616
.package(url: "https://github.com/apple/swift-log.git", from: "1.0.0"),
1717
.package(url: "https://github.com/MaxDesiatov/XMLCoder.git", from: "0.12.0")
1818
],

smithy-swift-codegen/src/main/kotlin/software/amazon/smithy/swift/codegen/SwiftDependency.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ enum class SwiftDependency(
2121
SWIFT_LOG("Logging", null, "", "", "", ""),
2222
CLIENT_RUNTIME(
2323
"ClientRuntime",
24-
"master",
24+
"main",
2525
"0.1.0",
2626
"https://github.com/awslabs/smithy-swift",
2727
Resources.computeAbsolutePath("smithy-swift/Packages", "Packages", "SMITHY_SWIFT_CI_DIR") + "/Packages",
@@ -30,7 +30,7 @@ enum class SwiftDependency(
3030
XCTest("XCTest", null, "", "", "", ""),
3131
SMITHY_TEST_UTIL(
3232
"SmithyTestUtil",
33-
"master",
33+
"main",
3434
"0.1.0",
3535
"https://github.com/awslabs/smithy-swift",
3636
Resources.computeAbsolutePath("smithy-swift/Packages", "Packages", "SMITHY_SWIFT_CI_DIR") + "/Packages",

0 commit comments

Comments
 (0)