Socket
Socket
Sign inDemoInstall

@jamesives/github-pages-deploy-action

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jamesives/github-pages-deploy-action - npm Package Compare versions

Comparing version 4.1.4 to 4.1.5

6

__tests__/git.test.ts

@@ -219,3 +219,3 @@ // Initial env variable setup for tests.

// Includes the call to generateWorktree
expect(execute).toBeCalledTimes(11)
expect(execute).toBeCalledTimes(12)
expect(rmRF).toBeCalledTimes(1)

@@ -244,3 +244,3 @@ })

// Includes the call to generateWorktree
expect(execute).toBeCalledTimes(10)
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)

@@ -270,3 +270,3 @@ })

// Includes the call to generateWorktree
expect(execute).toBeCalledTimes(10)
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)

@@ -273,0 +273,0 @@ })

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

: ''}`, action.workspace, action.silent);
if (action.singleCommit) {
yield execute_1.execute(`git add --all .`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
}
// Use git status to check if we have something to commit.

@@ -109,0 +112,0 @@ // Special case is singleCommit with existing history, when

@@ -5,3 +5,3 @@ {

"author": "James Ives <iam@jamesiv.es> (https://jamesiv.es)",
"version": "4.1.4",
"version": "4.1.5",
"license": "MIT",

@@ -37,23 +37,23 @@ "main": "lib/lib.js",

"dependencies": {
"@actions/core": "1.3.0",
"@actions/exec": "1.0.4",
"@actions/core": "1.5.0",
"@actions/exec": "1.1.0",
"@actions/github": "5.0.0",
"@actions/io": "1.1.0"
"@actions/io": "1.1.1"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/node": "15.12.0",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"eslint": "7.27.0",
"@types/jest": "27.0.1",
"@types/node": "16.7.2",
"@typescript-eslint/eslint-plugin": "4.29.3",
"@typescript-eslint/parser": "4.29.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.1",
"jest": "26.6.3",
"jest-circus": "27.0.4",
"prettier": "2.3.0",
"jest-circus": "27.0.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"ts-jest": "26.5.6",
"typescript": "4.3.2"
"typescript": "4.3.5"
}
}

@@ -350,2 +350,2 @@ <p align="center">

<!-- sponsors --><a href="https://github.com/MattWillFlood"><img src="https://github.com/MattWillFlood.png" width="50px" alt="" /></a><!-- sponsors -->
<!-- sponsors --><a href="https://github.com/milanpollock"><img src="https://github.com/milanpollock.png" width="50px" alt="" /></a><!-- sponsors -->

@@ -146,2 +146,10 @@ import {info} from '@actions/core'

if (action.singleCommit) {
await execute(
`git add --all .`,
`${action.workspace}/${temporaryDeploymentDirectory}`,
action.silent
)
}
// Use git status to check if we have something to commit.

@@ -148,0 +156,0 @@ // Special case is singleCommit with existing history, when

Sorry, the diff of this file is not supported yet

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