typescript-github-action-template 0.2.40 → 0.2.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
- import { type Octokit } from '@octokit/core/dist-types/index.js';
2
- import { type PaginateInterface } from '@octokit/plugin-paginate-rest';
3
- import { type Api } from '@octokit/plugin-rest-endpoint-methods/dist-types/types.js';
1
+ import type { Octokit } from '@octokit/core';
2
+ import type { PaginateInterface } from '@octokit/plugin-paginate-rest';
3
+ import type { Api } from '@octokit/plugin-rest-endpoint-methods';
4
4
  export declare function getOctokit(githubToken: string): Octokit & Api & {
5
5
  paginate: PaginateInterface;
6
6
  };
@@ -1,4 +1,4 @@
1
- import { GitHub, getOctokitOptions } from '@actions/github/lib/utils.js';
1
+ import { GitHub, getOctokitOptions } from '@actions/github/lib/utils';
2
2
  import { retry } from '@octokit/plugin-retry';
3
3
  import { throttling } from '@octokit/plugin-throttling';
4
4
  export function getOctokit(githubToken) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.40",
3
+ "version": "0.2.49",
4
4
  "description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.js",
@@ -30,12 +30,12 @@
30
30
  "@0no-co/graphqlsp": "^1.12.12",
31
31
  "@eslint/eslintrc": "^3.0.2",
32
32
  "@eslint/js": "^9.2.0",
33
- "@graphql-codegen/cli": "6.0.1",
34
- "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "5.0.2",
36
- "@graphql-codegen/typescript-document-nodes": "5.0.2",
33
+ "@graphql-codegen/cli": "6.1.1",
34
+ "@graphql-codegen/near-operation-file-preset": "^4.0.0",
35
+ "@graphql-codegen/typescript": "5.0.7",
36
+ "@graphql-codegen/typescript-document-nodes": "5.0.7",
37
37
  "@serverless-guru/prettier-plugin-import-order": "^0.4.2",
38
- "@types/node": "^24.0.0",
38
+ "@types/node": "^25.0.0",
39
39
  "@typescript-eslint/eslint-plugin": "^8.0.0",
40
40
  "@typescript-eslint/parser": "^8.0.0",
41
41
  "@vercel/ncc": "^0.38.0",
@@ -52,8 +52,8 @@
52
52
  "typescript-eslint": "^8.0.0"
53
53
  },
54
54
  "dependencies": {
55
- "@actions/core": "^1.10.0",
56
- "@actions/github": "^6.0.0",
55
+ "@actions/core": "^3.0.0",
56
+ "@actions/github": "^9.0.0",
57
57
  "@octokit/plugin-retry": "^8.0.1",
58
58
  "@octokit/plugin-throttling": "^11.0.1"
59
59
  },