Skip to content

Commit 8dfc95f

Browse files
committed
docs: update link
1 parent 9f3727d commit 8dfc95f

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

content/blog/bytebase-vs-cloudbeaver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ On the other hand, the more common way to change the schema is to use **Schema E
158158

159159
- **CloudBeaver**: In theory, you can build GitOps solution via the GraphQL API, but there is no mature solutions.
160160

161-
- **Bytebase**: [GitOps best practice](https://github.com/bytebase/api-example/tree/main/data-security) to configure every aspect of database security.
161+
- **Bytebase**: [GitOps best practice](https://github.com/bytebase/database-security-github-actions-example) to configure every aspect of database security.
162162

163163
## Summary
164164

content/blog/top-open-source-sql-clients.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Aforementioned tools are all client-side SQL editors for individual use. What if
8888
- **Data masking**. You may want to prevent users seeing sensitive data.
8989
- **Request and review workflow**. You want users go through a ticketing process to request the access rights.
9090
- **Audit logging**. You want to capture all operations performed on the database.
91-
- **Policy as Code (GitOps)**. Permission control and masking policies can be [codified](https://github.com/bytebase/api-example/tree/main/data-security) and integrated with your existing DevOps pipeline.
91+
- **Policy as Code (GitOps)**. Permission control and masking policies can be [codified](https://github.com/bytebase/database-security-github-actions-example) and integrated with your existing DevOps pipeline.
9292

9393
All above requirements call for a server-side solution. And that's what [Bytebase SQL Editor](/sql-editor) provides.
9494

content/blog/what-is-database-devsecops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ efficient querying for authorized users.
7575

7676
<HintBlock type="info">
7777

78-
Unlike client-side solutions, Bytebase is a server-side solution providing [access control](/docs/security/database-permission/overview/), [dynamic data masking](/docs/security/data-masking/overview/), [audit logging](/docs/security/audit-log/). You can also [codify these data security policies (Policy-as-Code)](https://github.com/bytebase/api-example/tree/main/data-security).
78+
Unlike client-side solutions, Bytebase is a server-side solution providing [access control](/docs/security/database-permission/overview/), [dynamic data masking](/docs/security/data-masking/overview/), [audit logging](/docs/security/audit-log/). You can also [codify these data security policies (Policy-as-Code)](https://github.com/bytebase/database-security-github-actions-example).
7979

8080
</HintBlock>
8181

content/docs/api/issue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ title: Issue
2121

2222
## How to create an issue
2323

24-
Code sample: https://github.com/bytebase/github-action-example/blob/main/.github/actions/upsert-issue/index.ts#L68-L75
24+
Code sample: https://github.com/bytebase/cicd-github-actions-example/blob/main/.github/actions/upsert-issue/index.ts#L68-L75
2525

2626
```go
2727
// Create plan

content/docs/security/data-masking/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ organizations to protect sensitive data from being exposed to unauthorized users
1212

1313
<HintBlock type="info">
1414

15-
You can configure the masking policies from UI or via API. Check out [this GitOps example](https://github.com/bytebase/api-example/tree/main/data-security) to see how to codify the masking policies.
15+
You can configure the masking policies from UI or via API. Check out [this GitOps example](https://github.com/bytebase/database-security-github-actions-example) to see how to codify the masking policies.
1616

1717
</HintBlock>
1818

content/docs/tutorials/data-masking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ from being exposed to unauthorized users.
2121
<HintBlock type="info">
2222

2323
This tutorial covers configuration via UI console. You can also codify the masking policies, check
24-
out [this sample](https://github.com/bytebase/api-example/tree/main/data-security).
24+
out [this sample](https://github.com/bytebase/database-security-github-actions-example).
2525

2626
</HintBlock>
2727

content/docs/tutorials/github-ci.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ estimated_time: '30 mins'
99
description: 'In this article, you will delve into a practical example from Bytebase, demonstrating how to automate database schema change workflow using GitHub Actions and Bytebase API.'
1010
---
1111

12-
> Tutorial repository [https://github.com/bytebase/github-action-example](https://github.com/bytebase/github-action-example)
12+
> Tutorial repository [https://github.com/bytebase/cicd-github-actions-example](https://github.com/bytebase/cicd-github-actions-example)
1313
1414
Developers like to keep their schema migration scripts in Git along with the application code. Thus
1515
the migration scripts will be reviewed and version-controlled in the same way as the application code.
@@ -125,7 +125,7 @@ and emit GitHub inline annotations for each advice and mark the check as failed
125125
...
126126
```
127127

128-
We create a [PR](https://github.com/bytebase/github-action-example/pull/15) with several SQL files, and it triggers both `bytebase-sql-review.yml` and `bytebase-check-migration-status.yml`. After these checks are completed, the PR is blocked due to failures.
128+
We create a [PR](https://github.com/bytebase/cicd-github-actions-example/pull/15) with several SQL files, and it triggers both `bytebase-sql-review.yml` and `bytebase-check-migration-status.yml`. After these checks are completed, the PR is blocked due to failures.
129129

130130
![gh-pr1-blocked](/content/docs/tutorials/github-ci/gh-pr1-blocked.webp)
131131

content/docs/tutorials/sql-review.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ You may call [Bytebase API](/docs/api/sql-review/) in your internal portal or Gi
142142
Sample portal to call Bytebase API to trigger schema change including SQL Review.
143143
![bb-api](/content/docs/tutorials/sql-review/bb-api.webp)
144144

145-
- [🐙 API in GitHub Actions Example](https://github.com/bytebase/github-action-example)
145+
- [🐙 API in GitHub Actions Example](https://github.com/bytebase/cicd-github-actions-example)
146146

147147
Sample github custom actions to call Bytebase API to coordinate the schema migration in Bytebase with the GitHub PR workflow.
148148
![bb-gh-action](/content/docs/tutorials/sql-review/bb-gh-action.webp)

0 commit comments

Comments
 (0)