Skip to content

Commit 15de6f7

Browse files
authored
feat: Adds GHES 3.13 as a supported operation (#458)
* Adds GHES 3.13 as a supported operation * fixes linting issues
1 parent d0f55a9 commit 15de6f7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

scripts/overrides/index.mjs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@ import { readFileSync } from "fs";
22
import { resolve, join, dirname } from "path";
33
import { fileURLToPath } from "url";
44

5-
const SUPPORTED_GHES_OPERATIONS = ["3.8", "3.9", "3.10", "3.11", "3.12"];
5+
const SUPPORTED_GHES_OPERATIONS = [
6+
"3.8",
7+
"3.9",
8+
"3.10",
9+
"3.11",
10+
"3.12",
11+
"3.13",
12+
];
613
const __dirname = dirname(fileURLToPath(import.meta.url));
714

815
function isDeferenced(filename) {

0 commit comments

Comments
 (0)