Compare commits

...
Author SHA1 Message Date
Sean Goedecke c7105a4c1e Merge pull request #11 from actions/sgoedecke/tweaks
Update readme and update/pin dependencies
2025-04-11 07:55:13 +10:00
Sean Goedecke b75b177af3 update codeowners 2025-04-10 21:37:11 +00:00
Sean Goedecke a3d57cc6dc Linting 2025-04-10 21:33:06 +00:00
Sean Goedecke 9239ab5d65 version to v1 2025-04-10 21:27:55 +00:00
Sean Goedecke 5ac68dad30 bump local action package 2025-04-10 21:26:29 +00:00
Sean Goedecke 3f8bae9a6e Pin linter CI to SHA 2025-04-10 21:24:44 +00:00
Sean Goedecke 6baaaac50c Add license section to readme 2025-04-10 21:24:37 +00:00
Sean Goedecke e8a0bebb73 Merge pull request #9 from actions/sgoedecke/use-user-provided-endpoint
Use user-provided endpoint
2025-04-11 06:17:11 +10:00
5 changed files with 32 additions and 11 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ jobs:
- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter/slim@v7
uses: super-linter/super-linter/slim@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2
env:
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: dist/**/*
+1 -1
View File
@@ -4,4 +4,4 @@
############################################################################
# Default owners, unless a later match takes precedence.
* @actions/actions-oss-maintainers
* @actions/models
+5
View File
@@ -96,6 +96,11 @@ following steps:
to create a new release in GitHub so users can easily reference the new tags
in their workflows.
## License
This project is licensed under the terms of the MIT open source license. Please
refer to [MIT](./LICENSE.txt) for the full terms.
## Contributions
Contributions are welcome! See the [Contributor's Guide](CONTRIBUTING.md).
+24 -8
View File
@@ -9,13 +9,12 @@
"version": "0.0.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@rollup/rollup-linux-x64-gnu": "*"
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@azure-rest/ai-inference": "*",
"@azure/core-auth": "*",
"@azure/core-sse": "*",
"@azure-rest/ai-inference": "latest",
"@azure/core-auth": "latest",
"@azure/core-sse": "latest",
"@eslint/compat": "^1.2.7",
"@github/local-action": "^3.1.3",
"@jest/globals": "^29.7.0",
@@ -1735,9 +1734,9 @@
}
},
"node_modules/@github/local-action": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@github/local-action/-/local-action-3.1.3.tgz",
"integrity": "sha512-Pi2Mf7bIiFN30xgDtaQf0Yvm2fZ1QnMGZmNHAKimW/ntCLFVJQsWXmNo3GqzsENbyXcsb2ziZ6DJI5b9TmWYig==",
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@github/local-action/-/local-action-3.1.4.tgz",
"integrity": "sha512-PwA4w5jsjbyK+DNFNnFc4htu0iBOngi8g+O7NV8eGo9wm5YpIxf9kKgLJgVDIZlT32rfOVre5XZzGdPLTfggHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1751,6 +1750,7 @@
"@octokit/plugin-request-log": "^5.3.1",
"@octokit/plugin-rest-endpoint-methods": "^13.3.1",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/rest": "^21.1.1",
"archiver": "^7.0.1",
"chalk": "^5.3.0",
"commander": "^13.0.0",
@@ -2662,6 +2662,22 @@
"node": ">= 18"
}
},
"node_modules/@octokit/rest": {
"version": "21.1.1",
"resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-21.1.1.tgz",
"integrity": "sha512-sTQV7va0IUVZcntzy1q3QqPm/r8rWtDCqpRAmb8eXXnKkjoQEtFe3Nt5GTVsHft+R6jJoHeSiVLcgcvhtue/rg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@octokit/core": "^6.1.4",
"@octokit/plugin-paginate-rest": "^11.4.2",
"@octokit/plugin-request-log": "^5.3.1",
"@octokit/plugin-rest-endpoint-methods": "^13.3.0"
},
"engines": {
"node": ">= 18"
}
},
"node_modules/@octokit/types": {
"version": "13.8.0",
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.8.0.tgz",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "typescript-action",
"description": "GitHub Actions TypeScript template",
"version": "0.0.0",
"version": "1.0.0",
"author": "",
"type": "module",
"private": true,