---
title: github-actions-are-live - Codenotary
description: MONITOR & MANAGE THE RISK EXPOSURE OF YOUR APPLICATIONS WITH TRUESBOM®
image: https://codenotary.com/hubfs/Imported_Blog_Media/Blog-Default-MnL-Feb-10-2023-08-07-17-2504-AM.jpg
---

**$ protect --distro linux --machines 25 --free**

[Start now](https://apps.codenotary.com/linux)

[![cn-logo-black-nobg](https://codenotary.com/hubfs/cn-logo-black-nobg.svg)](https://codenotary.com/)

- Product
  
  #### [![AgentMon Start](https://codenotary.com/hubfs/AgentMon%20Start.svg) **AgentMon Start** Organization-wide AI agent spend, security and device fleet TRY NOW →](https://apps.codenotary.com/agentmon-start)
  
  #### [![AgentMon for Enterprise](https://codenotary.com/hubfs/AgentMon%20for%20Enterprise.svg) **AgentMon** Currently monitors more \> 7 million agent interactions/day. TRY NOW →](https://codenotary.com/agentmon)
  
  #### [![AgentX](https://codenotary.com/hubfs/AgentX.svg) **AgentX** Agentic network control middleware. TRY NOW →](https://codenotary.com/agent-network-control)
  
  #### [![Autonomous Security](https://codenotary.com/hubfs/Autonomous%20Security.svg) **Autonomous Security** AI Agents keep your servers secure. TRY NOW →](https://codenotary.com/trust)
- Use Cases
  
  #### [**AI Agent Risk Monitoring** Continuous oversight of autonomous agents across every environment.](https://codenotary.com/use-cases#risk)
  
  #### [**Autonomous Security Operations** Self-healing defenses that detect, contain, and remediate threats.](https://codenotary.com/use-cases#agentops)
  
  #### [**AI Coding Governance & Performance Monitoring** AI-generated code reviewed, tracked, and held to quality standards.](https://codenotary.com/use-cases#performance)
  
  #### [**AI Tool Cost & Usage Optimization** Spend and consumption optimized across every AI service in use.](https://codenotary.com/use-cases#cost)
  
  #### [**AI Tool Security & Policy Enforcement** Approved AI usage enforced with guardrails and policy controls.](https://codenotary.com/use-cases#security#security)
  
  #### [**Shadow AI Governance** Unsanctioned AI tools discovered, surfaced, and brought under control.](https://codenotary.com/use-cases#shadowit)
- [Blog](https://codenotary.com/blog)
- [Press](https://codenotary.com/press)
- Resources
  
  #### [**Integrations** Connect with your favorite tools and platforms. LEARN MORE →](https://codenotary.com/integrations)
  
  #### [**Support** Get help from our dedicated support team. GET HELP →](https://support.codenotary.com)
  
  #### [**Success Stories** Read how customers achieve their goals. READ MORE →](https://codenotary.com/success)
  
  #### [**Learn** Access documentation and learning resources. EXPLORE →](https://codenotary.com/learn)

[Login](https://apps.codenotary.com/auth/login)

[All posts](https://codenotary.com/blog/all)

 Oct 31, 2019

# github-actions-are-live

 By  [Dennis](https://codenotary.com/blog/author/dennis)  ·   2 minute read

GitHub Actions go live on November 13th and we’re in the last 2 weeks of the beta.

Being part of the GitHub Actions beta program allowed us to create our Codenotary commit authentication for the GitHub Actions marketplace. Now its ready and tested and everyone can use for free: <https://github.com/marketplace/actions/verify-commit>[https://github.com/marketplace/actions/verify-commit](https://github.com/marketplace/actions/verify-commit)

## GitHub Actions GA free quantities

The following email reached us and informs about the free quantities and where to find pricing as well, if you go beyond these limits.

> We wanted to let you know that these services will still be free for open source and include free quantities, and that overages will become paid services on November 13. You can continue to use these services with no changes to your existing workflows. If you’d like to use Actions and Package Registry beyond the included limits, you will need to enable overages, since we will not charge you without your consent, even if you’ve been using similar levels of service quantities during the beta programs.
> 
> GitHub

The pricing page can be found here: <https://github.com/features/actions>[https://github.com/features/actions](https://github.com/features/actions)

## GitHub Actions marketplace

You can find the GitHub Action in the marketplace: [Codenotary Verify Commit](https://github.com/marketplace/actions/verify-commit)

![GitHub Action to verify commits](https://codenotary.com/hubfs/Imported_Blog_Media/marketplace-1024x599-1-1.png)

## Verify the authenticity of your commits with Codenotary.io

Using the Verify commit action, you can sign your work locally using the [Codenotary vcn](https://github.com/vchain-us/vcn) command line (ie. *vcn notarize git://*.). This action will verify these signatures so other people will know that your commits come from a trusted source.

Whenever you release a new commit, the verification check will be triggered and everyone can be sure its trusted by the maintainer. You can simply click on every checkmark of the commit to see the details.

![Codenotary GitHub action](https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png)

## Usage

![verify commit action integration](https://static.hsstatic.net/BlogImporterAssetsUI/ex/missing-image.png)

Create a workflow `.yml` file in your repositories `.github/workflows` directory (eg. `.github/workflows/verify.yml`). In your workflow you first need to checkout your repository then use this action:

name: Codenotary

on: \[push\]

jobs:  
 check:

```
runs-on: ubuntu-latest

steps:
 - name: Checkout
   uses: actions/checkout@master

 - name: Verify
   uses: vchain-us/verify-action@master
```

For more details, see [Contexts and expression syntax for GitHub Actions](https://help.github.com/en/articles/contexts-and-expression-syntax-for-github-actions)

## Inputs

See [action.yml](https://github.com/vchain-us/verify-action/blob/master/action.yml).

Available inputs

- `signerID` – List of SignerID(s) (separated by space) to authenticate against. A SignerID is the signer’s public address (represented as a 40 hex characters long string prefixed with `0x`).
- `org` – Organization’s ID to authenticate against. Note that `org` takes precedence over `signerID`
- `path` – Path to git working directory. Default to the current directory.

Example:

```
 - name: Verify
   uses: vchain-us/verify-action@master
   with:
     signerID: <a trusted signer ID>
     org: <a trusted organization>
     path: <path to your repository, if not the current directory>
```

## Sign / Notarize your Git Commit

Please check the vcn repository to learn more about how you can notarize your commits, so the checks pass.

<https://github.com/vchain-us/vcn#usage>[https://github.com/vchain-us/vcn#usage](https://github.com/vchain-us/vcn#usage)

## Sources

You can find the sourcecode of the GitHub action in our GitHub repository: <https://github.com/vchain-us/verify-action>[https://github.com/vchain-us/verify-action](https://github.com/vchain-us/verify-action)

[![Share on twitter](https://4059529.fs1.hubspotusercontent-na1.net/hub/4059529/hubfs/01-marketplace/twitter-color.png?width=35&height=35&name=twitter-color.png)](https://twitter.com/intent/tweet?original_referer=https://codenotary.com/blog/github-actions-are-live&utm_medium=social&utm_source=twitter&url=https://codenotary.com/blog/github-actions-are-live&utm_medium=social&utm_source=twitter&source=tweetbutton&text=) [![Share on facebook](https://4059529.fs1.hubspotusercontent-na1.net/hub/4059529/hubfs/01-marketplace/facebook-color.png?width=35&height=35&name=facebook-color.png)](http://www.facebook.com/share.php?u=https://codenotary.com/blog/github-actions-are-live&utm_medium=social&utm_source=facebook) [![Share on linkedin](https://4059529.fs1.hubspotusercontent-na1.net/hub/4059529/hubfs/01-marketplace/linkedin-color.png?width=35&height=35&name=linkedin-color.png)](http://www.linkedin.com/shareArticle?mini=true&url=https://codenotary.com/blog/github-actions-are-live&utm_medium=social&utm_source=linkedin) [![Share on pinterest](https://4059529.fs1.hubspotusercontent-na1.net/hub/4059529/hubfs/pinterest.jpg?width=35&height=35&name=pinterest.jpg)](http://pinterest.com/pin/create/button/?url=https://codenotary.com/blog/github-actions-are-live&utm_medium=social&utm_source=pinterest&media=)

```json
{
  "@context" : "https://schema.org",
  "@type" : "BlogPosting",
  "author" : {
    "@type" : "Person",
    "name" : "Dennis",
    "url" : "https://codenotary.com/blog/author/dennis"
  },
  "dateModified" : "2023-02-14T21:09:58.743Z",
  "datePublished" : "2019-10-31T21:41:37.000Z",
  "headline" : "github-actions-are-live - Codenotary",
  "image" : [ "https://codenotary.com/hubfs/Imported_Blog_Media/Blog-Default-MnL-Feb-10-2023-08-07-17-2504-AM.jpg" ],
  "mainEntityOfPage" : {
    "@id" : "https://codenotary.com/blog/github-actions-are-live",
    "@type" : "WebPage"
  },
  "publisher" : {
    "@type" : "Organization",
    "logo" : {
      "@type" : "ImageObject",
      "url" : "https://codenotary.com/hubfs/logo-light.svg"
    },
    "name" : "Codenotary, Inc."
  }
}
```

```json
{
  "@context" : "http://schema.org",
  "@type" : "Article",
  "author" : {
    "@type" : "Person",
    "name" : [ "Dennis" ],
    "url" : "https://codenotary.com/blog/author/dennis"
  },
  "datePublished" : "2019-10-31T21:41:37+0000",
  "description" : "MONITOR & MANAGE THE RISK EXPOSURE OF YOUR APPLICATIONS WITH TRUESBOM®",
  "headline" : "github-actions-are-live",
  "image" : "https://23873599.fs1.hubspotusercontent-na1.net/hubfs/23873599/Imported_Blog_Media/Blog-Default-MnL-Feb-10-2023-08-07-17-2504-AM.jpg",
  "publisher" : {
    "@type" : "Organization",
    "logo" : {
      "@type" : "ImageObject",
      "url" : "https://cdn2.hubspot.net/hubfs/23873599/logo-light.svg"
    },
    "name" : ""
  },
  "url" : "https://codenotary.com/blog/github-actions-are-live"
}
```