Socket
Socket
Sign inDemoInstall

@actions/github

Package Overview
Dependencies
Maintainers
4
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@actions/github - npm Package Compare versions

Comparing version 3.0.0 to 4.0.0

3

lib/context.d.ts

@@ -13,2 +13,5 @@ import { WebhookPayload } from './interfaces';

actor: string;
job: string;
runNumber: number;
runId: number;
/**

@@ -15,0 +18,0 @@ * Hydrate the context from the environment

@@ -27,2 +27,5 @@ "use strict";

this.actor = process.env.GITHUB_ACTOR;
this.job = process.env.GITHUB_JOB;
this.runNumber = parseInt(process.env.GITHUB_RUN_NUMBER, 10);
this.runId = parseInt(process.env.GITHUB_RUN_ID, 10);
}

@@ -29,0 +32,0 @@ get issue() {

13

package.json
{
"name": "@actions/github",
"version": "3.0.0",
"version": "4.0.0",
"description": "Actions github lib",

@@ -18,3 +18,4 @@ "keywords": [

"files": [
"lib"
"lib",
"!.DS_Store"
],

@@ -41,6 +42,6 @@ "publishConfig": {

"dependencies": {
"@actions/http-client": "^1.0.3",
"@octokit/core": "^2.5.1",
"@octokit/plugin-paginate-rest": "^2.2.0",
"@octokit/plugin-rest-endpoint-methods": "^3.10.0"
"@actions/http-client": "^1.0.8",
"@octokit/core": "^3.0.0",
"@octokit/plugin-paginate-rest": "^2.2.3",
"@octokit/plugin-rest-endpoint-methods": "^4.0.0"
},

@@ -47,0 +48,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc