Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace master references with main #1022

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/run-wss-scan/wss-unified-agent.config
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ followSymbolicLinks=true
#scm.pass=
#scm.ppk=
#scm.url=https://github.com/godaddy/asherah
#scm.branch=master
#scm.branch=main
#scm.tag=
#scm.npmInstall=false
#scm.npmInstallTimeoutMinutes=
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Continuous Integration
on:
push:
branches:
# Push events on master branch
- master
# Push events on main branch
- main
# Push events to branches matching refs/heads/release-
- 'release-*'
pull_request:
branches: [ master ]
branches: [ main ]

#### Global environment variables
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@f095bcc56b7c2baf48f3ac70d6d6782f4f553222

- name: Merge master -> {RELEASE_TARGET}
- name: Merge main -> {RELEASE_TARGET}
uses: devmasx/merge-branch@6ec8363d74aad4f1615d1234ae1908b4185c4313
with:
type: now
head_to_merge: master
head_to_merge: main
target_branch: ${{ github.event.inputs.target }}
github_token: ${{ secrets.MERGE_TOKEN }}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ From a practical perspective, contributions are as simple as:
- Making changes to your forked repository.
- When committing, reference your issue (if present) and include a note about the fix.
- If possible, and if applicable, please also add/update unit tests for your changes.
- Push the changes to your fork and submit a pull request to the 'master' branch of the project's repository.
- Push the changes to your fork and submit a pull request to the 'main' branch of the project's repository.

If you are new to this process, consider taking a look at the whole flow overview
[here](https://guides.github.com/activities/forking/).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![License](https://img.shields.io/github/license/godaddy/asherah.svg)](https://github.com/godaddy/asherah/blob/master/LICENSE)
[![License](https://img.shields.io/github/license/godaddy/asherah.svg)](https://github.com/godaddy/asherah/blob/main/LICENSE)
[![CircleCI](https://img.shields.io/circleci/build/gh/godaddy/asherah.svg)](https://circleci.com/gh/godaddy/asherah)
[![Codecov](https://codecov.io/gh/godaddy/asherah/graph/badge.svg)](https://codecov.io/gh/godaddy/asherah)

Expand Down
4 changes: 2 additions & 2 deletions csharp/AppEncryption/AppEncryption/AppEncryption.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>GoDaddy.Asherah.AppEncryption</PackageId>
<Title>AppEncryption</Title>
Expand All @@ -16,7 +16,7 @@
<!-- Properties related to NuGet packaging: -->
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/master/csharp/AppEncryption</RepositoryUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/main/csharp/AppEncryption</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
2 changes: 1 addition & 1 deletion csharp/Logging/Logging/Logging.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- Properties related to NuGet packaging: -->
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/master/csharp/Logging</RepositoryUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/main/csharp/Logging</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- End of Properties related to NuGet packaging: -->
</PropertyGroup>
Expand Down
54 changes: 27 additions & 27 deletions csharp/SecureMemory/PlatformNative/PlatformNative.csproj
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>GoDaddy.Asherah.PlatformNative</PackageId>
<Authors>GoDaddy</Authors>
<Company>GoDaddy</Company>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>GoDaddy.Asherah.PlatformNative</RootNamespace>
<CodeAnalysisRuleSet>../StyleCopCustom.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/master/csharp/SecureMemory/PlatformNative</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

</Project>
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>GoDaddy.Asherah.PlatformNative</PackageId>
<Authors>GoDaddy</Authors>
<Company>GoDaddy</Company>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>GoDaddy.Asherah.PlatformNative</RootNamespace>
<CodeAnalysisRuleSet>../StyleCopCustom.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/main/csharp/SecureMemory/PlatformNative</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion csharp/SecureMemory/SecureMemory/SecureMemory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/master/csharp/SecureMemory</RepositoryUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/main/csharp/SecureMemory</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down
4 changes: 2 additions & 2 deletions docs/Internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Create and write DRR to data persistence

The following diagram summarizes the entire encrypt path.

![Encrypt Flow](https://github.com/raw/godaddy/asherah/master/docs/images/encrypt.svg?sanitize=true)
![Encrypt Flow](https://github.com/raw/godaddy/asherah/main/docs/images/encrypt.svg?sanitize=true)

### Decrypt

Expand Down Expand Up @@ -105,7 +105,7 @@ Return decrypted data

The following diagram summarizes the entire decrypt path.

![Decrypt Flow](https://github.com/raw/godaddy/asherah/master/docs/images/decrypt.svg?sanitize=true)
![Decrypt Flow](https://github.com/raw/godaddy/asherah/main/docs/images/decrypt.svg?sanitize=true)

### Future Consideration: Queued Rotation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- Properties related to NuGet packaging: -->
<PackageRequireLicenseAcceptance>False</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/godaddy/asherah</PackageProjectUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/master/samples/csharp/ReferenceApp</RepositoryUrl>
<RepositoryUrl>https://github.com/godaddy/asherah/tree/main/samples/csharp/ReferenceApp</RepositoryUrl>
<!-- End of Properties related to NuGet packaging: -->
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion server/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<!-- GRPC dependencies
Note: we can't use grpc-netty-shaded due to our use of netty-specific APIs, so related
dependencies must be maintained independently to ensure version compatability. For a table of known version
combonations, see https://github.com/grpc/grpc-java/blob/master/SECURITY.md#netty -->
combonations, see https://github.com/grpc/grpc-java/blob/main/SECURITY.md#netty -->
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-core</artifactId>
Expand Down
Loading