auth/package.json
Google GitHub Actions Bot 71fee32a0b
Release: v2.1.3 (#414)
## What's Changed
* Security considerations: ids are strings, not integers by @ewjoachim
in https://github.com/google-github-actions/auth/pull/400
* security: bump undici from 5.28.3 to 5.28.4 by @dependabot in
https://github.com/google-github-actions/auth/pull/405
* Fix typo by @sethvargo in
https://github.com/google-github-actions/auth/pull/408
* Switch to using universe helpers by @sethvargo in
https://github.com/google-github-actions/auth/pull/410
* Add request_reason for plumbing though user-supplied audit information
by @sethvargo in https://github.com/google-github-actions/auth/pull/413

## New Contributors
* @ewjoachim made their first contribution in
https://github.com/google-github-actions/auth/pull/400

**Full Changelog**:
https://github.com/google-github-actions/auth/compare/v2.1.2...e0122d6a976dd6794fe6e866adfcb3c11f828b36
2024-05-14 13:57:49 -04:00

43 lines
1.2 KiB
JSON

{
"name": "@google-github-actions/auth",
"version": "2.1.3",
"description": "Authenticate to Google Cloud using OIDC tokens or JSON service account keys.",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts -o dist/main && ncc build -m src/post.ts -o dist/post",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write **/*.ts",
"test": "bash ./bin/runTests.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/google-github-actions/auth"
},
"keywords": [
"actions",
"google cloud",
"identity",
"auth",
"oidc"
],
"author": "GoogleCloudPlatform",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.1",
"@google-github-actions/actions-utils": "^0.7.4"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}