Skip to main content

리포지토리 보안을 위한 빠른 시작

코드 액세스 관리 취약한 코드 및 종속성을 자동으로 찾아서 수정합니다.

누가 이 기능을 사용할 수 있나요?

리포지토리 소유자, 조직 소유자, 보안 관리자 및 관리자 역할이 있는 사용자

Introduction

This guide shows you how to configure security features for a repository.

Your security needs are unique to your repository, so you may not need to enable every feature for your repository. For more information, see GitHub security features.

Some features are available for repositories on all plans. Additional features are available to organizations and enterprises that use GitHub Secret Protection, GitHub Code Security, or GitHub Advanced Security. GitHub Advanced Security features are also enabled for all public repositories on GitHub. For more information, see About GitHub Advanced Security.

Managing access to your repository

The first step to securing a repository is to establish who can see and modify your code. For more information, see Managing your repository’s settings and features.

From the main page of your repository, click Settings, then scroll down to the "Danger Zone."

Managing the dependency graph

The dependency graph is automatically generated for all public repositories. You can choose to enable it for forks and for private repositories. The dependency graph interprets manifest and lock files in a repository to identify dependencies.

  1. From the main page of your repository, click Settings.
  2. Click Advanced Security.
  3. Next to Dependency graph, click Enable or Disable.

For more information, see Exploring the dependencies of a repository.

Managing Dependabot alerts

Dependabot alerts are generated when GitHub identifies a dependency in the dependency graph with a vulnerability. You can enable Dependabot alerts for any repository.

Additionally, you can use Dependabot auto-triage rules to manage your alerts at scale, so you can auto-dismiss or snooze alerts, and specify which alerts you want Dependabot to open pull requests for. For information about the different types of auto-triage rules, and whether your repositories are eligible, see About Dependabot auto-triage rules.

For an overview of the different features offered by Dependabot and instructions on how to get started, see Dependabot quickstart guide.

  1. Click your profile photo, then click Settings.
  2. Click Advanced Security.
  3. Click Enable next to Dependabot alerts.

For more information, see About Dependabot alerts and Managing security and analysis settings for your personal account.

Managing dependency review

Dependency review lets you visualize dependency changes in pull requests before they are merged into your repositories. For more information, see About dependency review.

Dependency review is a GitHub Code Security feature. Dependency review is already enabled for all public repositories. Organizations that use GitHub Team or GitHub Enterprise Cloud with GitHub Code Security can additionally enable dependency review for private and internal repositories.

To enable dependency review for a repository, ensure that the dependency graph is enabled and enable GitHub Code Security.

  1. From the main page of your repository, click Settings.
  2. Click Advanced Security.
  3. To the right of Code Security, click Enable.
  4. Under Code Security, check that dependency graph is enabled for the repository.
    • For public repositories, dependency graph is always enabled.

Managing Dependabot security updates

For any repository that uses Dependabot alerts, you can enable Dependabot security updates to raise pull requests with security updates when vulnerabilities are detected.

  1. From the main page of your repository, click Settings.
  2. Click Advanced Security.
  3. Next to Dependabot security updates, click Enable.

For more information, see About Dependabot security updates and Configuring Dependabot security updates.

Managing Dependabot version updates

You can enable Dependabot to automatically raise pull requests to keep your dependencies up-to-date. For more information, see About Dependabot version updates.

  1. From the main page of your repository, click Settings.
  2. Click Advanced Security.
  3. Next to Dependabot version updates, click Enable to create a basic dependabot.yml configuration file.
  4. Specify the dependencies to update and any associated configuration options, then commit the file to the repository. For more information, see Configuring Dependabot version updates.

Configuring Code Security

Note

Code Security features are available for all public repositories, and for private repositories owned by organizations that are part of a team or an enterprise that uses GitHub Code Security.

GitHub Code Security includes code scanning, CodeQL CLI and Copilot Autofix, as well as other features that find and fix vulnerabilities in your codebase.

You can configure code scanning to automatically identify vulnerabilities and errors in the code stored in your repository by using a CodeQL analysis workflow or third-party tool. Depending on the programming languages in your repository, you can configure code scanning with CodeQL using default setup, in which GitHub automatically determines the languages to scan, query suites to run, and events that will trigger a new scan. For more information, see Configuring default setup for code scanning.

  1. From the main page of your repository, click Settings.
  2. In the "Security" section of the sidebar, click Advanced Security.
  3. If "Code Security" is not already enabled, click Enable.
  4. Under "Code Security", to the right of "CodeQL analysis", select Set up , then click Default.
  5. In the pop-up window that appears, review the default configuration settings for your repository, then click Enable CodeQL.
  6. Choose whether you want to enable addition features, such as Copilot Autofix.

As an alternative to default setup, you can use advanced setup, which generates a workflow file you can edit to customize your code scanning with CodeQL. For more information, see Configuring advanced setup for code scanning.

Configuring Secret Protection

Note

Secret Protection features are available for all public repositories, and for user-owned and organization-owned repositories that are part of a team or an enterprise that uses GitHub Secret Protection.

GitHub Secret Protection includes secret scanning and push protection, as well as other features that help you detect and prevent secret leaks in your repository.

  1. From the main page of your repository, click Settings.
  2. Click Advanced Security.
  3. If Secret Protection is not already enabled, click Enable.
  4. Choose whether you want to enable additional features, such as validity checks, scanning for non-provider patterns, and push protection.

Setting a security policy

If you are a repository maintainer, it's good practice to specify a security policy for your repository by creating a file named SECURITY.md in the repository. This file instructs users about how to best contact you and collaborate with you when they want to report security vulnerabilities in your repository. You can view the security policy of a repository from the repository’s Security tab.

  1. From the main page of your repository, click Security.
  2. Click Security policy.
  3. Click Start setup.
  4. Add information about supported versions of your project and how to report vulnerabilities.

For more information, see Adding a security policy to your repository.

Next steps

You can view and manage alerts from security features to address dependencies and vulnerabilities in your code. For more information, see Viewing and updating Dependabot alerts, Managing pull requests for dependency updates, Assessing code scanning alerts for your repository, and Managing alerts from secret scanning.

You can also use GitHub's tools to audit responses to security alerts. For more information, see Auditing security alerts.

If you have a security vulnerability in a public repository, you can create a security advisory to privately discuss and fix the vulnerability. For more information, see About repository security advisories and Creating a repository security advisory.

If you use GitHub Actions, you can use GitHub's security features to increase the security of your workflows. For more information, see Using GitHub's security features to secure your use of GitHub Actions.