mirror of
https://github.com/goreleaser/goreleaser-action.git
synced 2026-07-03 03:29:37 +00:00
* chore(deps): bump the npm group with 4 updates Bumps the npm group with 4 updates: [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core), [@actions/http-client](https://github.com/actions/toolkit/tree/HEAD/packages/http-client), [js-yaml](https://github.com/nodeca/js-yaml) and [semver](https://github.com/npm/node-semver). Updates `@actions/core` from 3.0.0 to 3.0.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Updates `@actions/http-client` from 4.0.0 to 4.0.1 - [Changelog](https://github.com/actions/toolkit/blob/main/packages/http-client/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/http-client) Updates `js-yaml` from 4.3.0 to 5.2.0 - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/nodeca/js-yaml/compare/4.3.0...5.2.0) Updates `semver` from 7.7.4 to 7.8.5 - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v7.7.4...v7.8.5) --- updated-dependencies: - dependency-name: "@actions/core" dependency-version: 3.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm - dependency-name: "@actions/http-client" dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: npm - dependency-name: js-yaml dependency-version: 5.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: npm - dependency-name: semver dependency-version: 7.8.5 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * fix: updates Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "goreleaser-action",
|
|
"description": "GitHub Action for GoReleaser, a release automation tool for Go projects",
|
|
"main": "src/main.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "ncc build src/main.ts --minify --license licenses.txt",
|
|
"format": "prettier --write \"**/*.ts\"",
|
|
"format-check": "prettier --check \"**/*.ts\"",
|
|
"lint": "eslint --max-warnings=0 \"**/*.ts\"",
|
|
"lint:fix": "eslint --fix \"**/*.ts\"",
|
|
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
|
|
"pre-checkin": "npm run format && npm run lint:fix && npm run build && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/goreleaser/goreleaser-action.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"goreleaser",
|
|
"golang"
|
|
],
|
|
"author": "CrazyMax",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^3.0.1",
|
|
"@actions/exec": "^3.0.0",
|
|
"@actions/http-client": "^4.0.1",
|
|
"@actions/tool-cache": "^4.0.0",
|
|
"js-yaml": "^5.2.0",
|
|
"semver": "^7.8.5",
|
|
"yargs": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"dotenv": "^16.3.1",
|
|
"eslint": "^8.49.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^27.2.3",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"jest": "^29.6.4",
|
|
"prettier": "^3.0.3",
|
|
"tmp": "^0.2.1",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.2.2"
|
|
}
|
|
}
|