Compare commits

..

10 Commits

Author SHA1 Message Date
Konrad Pabjan 158ca71f7c Bump @actions/artifact to version 0.5.1 (#85)
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (ubuntu-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 2s
2021-04-06 16:50:27 -04:00
dependabot[bot] 65bdb44741 Bump y18n from 4.0.0 to 4.0.1 (#84)
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1.
- [Release notes](https://github.com/yargs/y18n/releases)
- [Changelog](https://github.com/yargs/y18n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yargs/y18n/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-06 15:23:44 -04:00
Josh Gross 782e5ae9ea Merge pull request #81 from rneatherway/codeql-add-pull-request-trigger
Add on: pull_request trigger to CodeQL workflow
2021-01-14 18:42:16 -05:00
Robin Neatherway a6ff13d56d Add on: pull_request trigger to CodeQL workflow
From February 2021, in order to provide feedback on pull requests, Code Scanning workflows must be configured with both `push` and `pull_request` triggers. This is because Code Scanning compares the results from a pull request against the results for the base branch to tell you only what has changed between the two.

Early in the beta period we supported displaying results on pull requests for workflows with only `push` triggers, but have discontinued support as this proved to be less robust.

See https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#scanning-pull-requests for more information on how best to configure your Code Scanning workflows.
2021-01-13 11:19:52 +00:00
Konrad Pabjan 4a7a711286 Add retries to all HTTP calls + fix dependabot alerts (#80)
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (ubuntu-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 2s
* Update @actions/artifact package to version 0.5.0

* bump eslint-plugin-github to version 4.1.1

* Update artifact.dep.yml
2021-01-04 15:47:26 +01:00
Konrad Pabjan f144d3c391 Update @actions/artifact from 0.3.5 to 0.4.2 (#73)
Test / Build (macos-latest) (push) Has been cancelled
Test / Build (ubuntu-latest) (push) Has been cancelled
Test / Build (windows-latest) (push) Has been cancelled
Code scanning - action / CodeQL-Build (push) Failing after 3s
* Update @actions/artifact from 0.3.5 to 0.4.2

* Update package versions in .licenses
2020-12-15 10:55:26 -05:00
Josh Gross 987de047e8 Merge pull request #71 from actions/joshmgross/fix-codeowners
Fix CODEOWNERS team name
2020-12-07 15:50:08 -05:00
Josh Gross 89cfa805e3 Fix CODEOWNERS team name 2020-12-07 13:35:10 -05:00
Yang Cao 37439a4b3c Merge pull request #69 from brcrista/patch-1
Add CODEOWNERS file
2020-11-25 15:24:36 -05:00
Brian Cristante d84bbb4c0a Create CODEOWNERS 2020-11-25 15:18:14 -05:00
7 changed files with 2225 additions and 2528 deletions
+1
View File
@@ -0,0 +1 @@
* @actions/artifacts-actions
+1
View File
@@ -2,6 +2,7 @@ name: "Code scanning - action"
on:
push:
pull_request:
paths-ignore:
- '**.md'
schedule:
+1 -1
View File
@@ -1,6 +1,6 @@
---
name: "@actions/artifact"
version: 0.3.5
version: 0.5.1
type: npm
summary: Actions artifact lib
homepage: https://github.com/actions/toolkit/tree/main/packages/artifact
+1 -1
View File
@@ -1,6 +1,6 @@
---
name: "@actions/http-client"
version: 1.0.8
version: 1.0.11
type: npm
summary: Actions Http Client
homepage: https://github.com/actions/http-client#readme
+1764 -1588
View File
File diff suppressed because it is too large Load Diff
+455 -936
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -28,7 +28,7 @@
},
"homepage": "https://github.com/actions/download-artifact#readme",
"dependencies": {
"@actions/artifact": "^0.3.5",
"@actions/artifact": "^0.5.1",
"@actions/core": "^1.2.6"
},
"devDependencies": {
@@ -37,7 +37,7 @@
"@zeit/ncc": "^0.22.1",
"concurrently": "^5.2.0",
"eslint": "^7.4.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-github": "^4.1.1",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
}