Compare commits

...
5 Commits
Author SHA1 Message Date
CrazyMax 6389ff5bd2 Update CHANGELOG 2020-10-01 20:08:37 +02:00
CrazyMax 9593cd0a20 Update deps 2020-10-01 20:01:43 +02:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>CrazyMax
d93a2cdf8c chore(deps): bump actions/checkout from v2.3.2 to v2.3.3 (#246)
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.2 to v2.3.3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2.3.2...a81bbbf8298c0fa03ea29cdc473d45769f953675)

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
2020-09-28 19:20:20 +00:00
dependabot[bot]GitHubdependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
3c2d9ae011 chore(deps): bump @actions/core from 1.2.5 to 1.2.6 (#245)
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-09-28 19:19:59 +00:00
2fc4e3ac51 chore(deps): Import GPG action v3 (#243)
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
2020-09-07 13:40:41 +00:00
8 changed files with 3171 additions and 3034 deletions
+6 -6
View File
@@ -28,7 +28,7 @@ jobs:
steps: steps:
- -
name: Checkout name: Checkout
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
with: with:
fetch-depth: 0 fetch-depth: 0
- -
@@ -61,7 +61,7 @@ jobs:
steps: steps:
- -
name: Checkout name: Checkout
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
with: with:
fetch-depth: 0 fetch-depth: 0
- -
@@ -72,10 +72,10 @@ jobs:
- -
name: Import GPG key name: Import GPG key
id: import_gpg id: import_gpg
uses: crazy-max/ghaction-import-gpg@v2 uses: crazy-max/ghaction-import-gpg@v3
env: with:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY_TEST }} gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY_TEST }}
PASSPHRASE: ${{ secrets.PASSPHRASE_TEST }} passphrase: ${{ secrets.PASSPHRASE_TEST }}
- -
name: Check name: Check
uses: ./ uses: ./
+1 -1
View File
@@ -14,7 +14,7 @@ jobs:
steps: steps:
- -
name: Checkout name: Checkout
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
- -
name: Install name: Install
run: yarn install run: yarn install
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
steps: steps:
- -
name: Checkout name: Checkout
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
with: with:
fetch-depth: 0 fetch-depth: 0
- -
+4
View File
@@ -1,5 +1,9 @@
# Changelog # Changelog
## 2.2.1 (2020/10/01)
* Fix CVE-2020-15228
## 2.2.0 (2020/08/27) ## 2.2.0 (2020/08/27)
* Use GITHUB_REF to retrieve tag before checking the most recent tag (#238) * Use GITHUB_REF to retrieve tag before checking the most recent tag (#238)
+4 -4
View File
@@ -97,10 +97,10 @@ If [signing is enabled](https://goreleaser.com/customization/#Signing) in your G
- -
name: Import GPG key name: Import GPG key
id: import_gpg id: import_gpg
uses: crazy-max/ghaction-import-gpg@v2 uses: crazy-max/ghaction-import-gpg@v3
env: with:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
PASSPHRASE: ${{ secrets.PASSPHRASE }} passphrase: ${{ secrets.PASSPHRASE }}
- -
name: Run GoReleaser name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2 uses: goreleaser/goreleaser-action@v2
Generated Vendored
+2682 -2610
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -21,23 +21,23 @@
"author": "CrazyMax", "author": "CrazyMax",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.2.5", "@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4", "@actions/exec": "^1.0.4",
"@actions/http-client": "^1.0.8", "@actions/http-client": "^1.0.8",
"@actions/tool-cache": "^1.6.0" "@actions/tool-cache": "^1.6.0"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^26.0.0", "@types/jest": "^26.0.14",
"@types/node": "^14.0.13", "@types/node": "^14.11.2",
"@vercel/ncc": "^0.23.0", "@vercel/ncc": "^0.24.1",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"jest": "^26.1.0", "jest": "^26.4.2",
"jest-circus": "^26.1.0", "jest-circus": "^26.4.2",
"jest-runtime": "^26.1.0", "jest-runtime": "^26.4.2",
"prettier": "^2.0.5", "prettier": "^2.1.2",
"tmp": "^0.2.1", "tmp": "^0.2.1",
"ts-jest": "^26.1.1", "ts-jest": "^26.4.1",
"typescript": "^3.9.5", "typescript": "^4.0.3",
"typescript-formatter": "^7.2.2" "typescript-formatter": "^7.2.2"
} }
} }
+463 -402
View File
File diff suppressed because it is too large Load Diff