435 lines
73 KiB
SQL
435 lines
73 KiB
SQL
/*
|
||
Navicat Premium Data Transfer
|
||
|
||
Source Server : 201
|
||
Source Server Type : MySQL
|
||
Source Server Version : 50742 (5.7.42)
|
||
Source Host : 172.20.32.202:3306
|
||
Source Schema : forgeplus
|
||
|
||
Target Server Type : MySQL
|
||
Target Server Version : 50742 (5.7.42)S
|
||
File Encoding : 65001
|
||
|
||
Date: 04/06/2025 13:46:32
|
||
*/
|
||
use forgeplus;
|
||
|
||
SET NAMES utf8mb4;
|
||
SET FOREIGN_KEY_CHECKS = 0;
|
||
|
||
-- ----------------------------
|
||
-- Table structure for action_node_inputs
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `action_node_inputs`;
|
||
CREATE TABLE `action_node_inputs` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`action_nodes_id` bigint(20) NULL DEFAULT NULL,
|
||
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`input_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`is_required` tinyint(1) NULL DEFAULT 0,
|
||
`sort_no` int(11) NULL DEFAULT 0,
|
||
`user_id` bigint(20) NULL DEFAULT NULL,
|
||
`created_at` datetime NOT NULL,
|
||
`updated_at` datetime NOT NULL,
|
||
`default_value` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `index_action_node_inputs_on_action_nodes_id`(`action_nodes_id`) USING BTREE,
|
||
INDEX `index_action_node_inputs_on_user_id`(`user_id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 99 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of action_node_inputs
|
||
-- ----------------------------
|
||
INSERT INTO `action_node_inputs` VALUES (1, 1, 'go-version', 'select', '', 1, 0, NULL, '2024-04-08 02:53:37', '2024-06-03 01:52:56', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (2, 2, 'node-version', 'select', '', 1, 0, NULL, '2024-04-08 02:58:56', '2024-06-03 01:53:04', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (3, 4, 'run', 'input', '', 1, 0, NULL, '2024-04-12 11:20:27', '2025-02-25 08:17:14', '');
|
||
INSERT INTO `action_node_inputs` VALUES (4, 5, 'java-version', 'select', NULL, 0, 0, NULL, '2024-04-12 11:42:01', '2024-04-12 11:42:03', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (5, 5, 'download_url', 'input', '', 0, 0, NULL, '2024-04-12 09:08:35', '2024-04-12 09:20:20', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (6, 11, 'branches', 'input', '分支名称,多个分支英文逗号隔开,如\'master,dev\'', 1, 0, NULL, '2024-05-06 02:15:45', '2025-02-18 01:31:51', 'master');
|
||
INSERT INTO `action_node_inputs` VALUES (8, 10, 'cron', 'input', '示例8点20分:\r\n20 8 * * *', 1, 0, NULL, '2024-05-06 02:47:15', '2025-02-18 02:09:11', '1');
|
||
INSERT INTO `action_node_inputs` VALUES (9, 6, 'host', 'input', '', 1, 0, NULL, '2024-05-06 08:55:42', '2024-05-06 08:55:42', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (10, 6, 'port', 'input', '', 1, 1, NULL, '2024-05-06 08:55:54', '2024-05-06 08:56:03', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (11, 6, 'username', 'input', '', 1, 2, NULL, '2024-05-06 08:56:21', '2024-05-06 08:56:21', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (12, 6, 'password', 'input', '', 1, 3, NULL, '2024-05-06 08:56:34', '2024-05-06 08:56:34', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (13, 6, 'script', 'input', '', 0, 4, NULL, '2024-05-06 08:57:46', '2024-05-06 08:57:54', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (14, 7, 'host', 'input', '', 1, 0, NULL, '2024-05-06 08:58:52', '2024-05-06 08:58:52', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (15, 7, 'port', 'input', '', 1, 1, NULL, '2024-05-06 08:59:07', '2024-05-06 08:59:07', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (16, 7, 'username', 'input', '', 1, 2, NULL, '2024-05-06 08:59:23', '2024-05-06 08:59:27', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (17, 7, 'password', 'input', '', 1, 3, NULL, '2024-05-06 08:59:40', '2024-05-06 08:59:40', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (18, 7, 'source', 'input', '拷贝文件或目录', 1, 4, NULL, '2024-05-06 09:00:39', '2024-05-06 09:04:17', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (19, 7, 'target', 'input', '目标文件目录', 1, 5, NULL, '2024-05-06 09:01:17', '2024-05-06 09:04:03', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (20, 12, 'branchs', 'input', '分支名称,多个分支英文逗号隔开,如\'master,dev\'', 0, 0, NULL, '2024-05-14 08:57:49', '2024-05-14 08:57:49', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (21, 14, 'test-1', 'string', '', 1, 0, NULL, '2024-05-29 02:54:55', '2024-05-29 02:54:55', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (22, 15, 'python-version', 'input', '', 1, 0, NULL, '2024-06-03 01:52:38', '2024-06-03 01:52:42', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (23, 8, 'servers', 'input', 'json参数[{\"id\": \"serverId\", \"username\": \"username\", \"password\": \"password\"}]', 0, 0, NULL, '2024-06-03 02:45:08', '2024-06-03 02:45:08', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (24, 8, 'mirrors', 'input', 'json参数[{\"id\": \"mirrorId\", \"name\": \"mirrorName\", \"mirrorOf\": \"mirrorOf\", \"url\": \"mirrorUrl\"}]', 0, 0, NULL, '2024-06-03 02:46:13', '2024-06-03 02:46:13', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (25, 16, 'go-version', 'input', '', 1, 0, NULL, '2024-06-12 08:36:48', '2024-06-12 08:36:48', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (26, 16, 'go-version-download-url', 'input', 'https://golang.google.cn/dl/go1.21.1.linux-amd64.tar.gz', 1, 0, NULL, '2024-06-12 08:37:18', '2024-06-12 08:37:18', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (27, 18, 'go-version', 'input', '', 0, 0, NULL, '2024-06-19 07:00:48', '2024-06-19 07:43:27', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (28, 20, 'node-version', 'input', '', 0, 0, NULL, '2024-06-19 07:20:04', '2024-06-19 07:20:04', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (29, 21, 'distribution', 'input', '', 0, 0, NULL, '2024-06-19 07:52:23', '2024-06-19 07:52:23', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (30, 21, 'jdkFile', 'input', '', 0, 0, NULL, '2024-06-19 07:52:35', '2024-06-19 07:52:35', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (31, 21, 'java-version', 'input', '', 0, 0, NULL, '2024-06-19 07:52:50', '2024-06-19 07:52:50', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (32, 21, 'architecture', 'input', '', 0, 0, NULL, '2024-06-19 07:53:01', '2024-06-19 07:53:01', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (33, 22, 'run', 'input', '获取java jdk,例如: \"wget -O $RUNNER_TEMP/java_package.tar.gz http://172.20.32.202:81/java_packages/11.0.10.5_x64_linux.tar.gz\"', 0, 0, NULL, '2024-06-19 08:11:52', '2024-06-19 08:11:52', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (34, 21, 'cache', 'input', '', 0, 0, NULL, '2024-07-10 01:08:43', '2024-07-10 01:08:43', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (35, 23, 'ProjectKey', 'input', 'sonar解析时的项目名称', 1, 0, NULL, '2024-09-10 07:08:37', '2024-09-12 02:23:42', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (36, 23, 'SonarUrl', 'input', '分析服务地址', 1, 1, NULL, '2024-09-10 08:24:23', '2024-09-10 08:32:45', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (37, 23, 'SonarToken', 'input', '输入sonar token', 1, 2, NULL, '2024-09-10 08:24:58', '2024-09-10 08:32:51', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (38, 25, 'repo', 'input', '项目地址', 1, 0, NULL, '2024-09-25 01:03:55', '2024-09-25 01:03:55', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (39, 25, 'source_branch', 'input', '仓库源分支', 1, 0, NULL, '2024-09-25 01:04:30', '2024-09-25 01:04:30', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (40, 25, 'destination_branch', 'input', '仓库目标分支', 1, 0, NULL, '2024-09-25 01:04:48', '2024-09-25 01:04:48', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (41, 25, 'ssh_private_key', 'input', 'ssh私钥', 0, 0, NULL, '2024-09-25 01:05:10', '2024-09-25 01:05:10', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (42, 26, 'type', 'input', '类型,labeled or now', 0, 0, NULL, '2024-09-25 01:52:45', '2024-09-25 07:16:31', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (43, 26, 'label_name', 'input', '标签名称', 0, 0, NULL, '2024-09-25 01:53:05', '2024-09-25 01:53:05', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (44, 26, 'target_branch', 'input', '目标分支', 1, 0, NULL, '2024-09-25 01:53:21', '2024-09-25 01:53:21', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (45, 26, 'from_branch', 'input', '源分支', 0, 0, NULL, '2024-09-25 01:53:36', '2024-09-25 01:53:36', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (46, 26, 'head_to_merge', 'input', '需要合并的分支名或者sha', 0, 0, NULL, '2024-09-25 01:54:35', '2024-09-25 01:54:35', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (47, 26, 'github_token', 'input', 'github 授权 token', 1, 0, NULL, '2024-09-25 01:54:58', '2024-09-25 01:54:58', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (48, 26, 'message', 'input', '提交信息', 0, 0, NULL, '2024-09-25 01:55:13', '2024-09-25 01:55:13', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (49, 26, 'disable_fastforwards', 'input', '没有文件发生改变,是否跳过合并', 0, 0, NULL, '2024-09-25 02:08:29', '2024-09-25 02:08:29', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (50, 27, 'github_token', 'input', 'github授权token', 1, 0, NULL, '2024-09-25 06:03:37', '2024-09-25 06:03:37', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (51, 27, 'commit_sha', 'input', 'commit sha', 0, 0, NULL, '2024-09-25 06:23:54', '2024-09-25 06:23:54', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (52, 27, 'fetch_all_tags', 'input', '是否拉取所有的tag,默认false,拉取前100个tag', 0, 0, NULL, '2024-09-25 06:24:29', '2024-09-25 06:24:29', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (53, 27, 'release_branches', 'input', '发布的分支。Examples: master or .* or release.*,hotfix.*,master... (default: master,main).', 0, 0, NULL, '2024-09-25 06:26:53', '2024-09-25 06:26:53', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (54, 27, 'pre_release_branches', 'input', '预发布的分支', 0, 0, NULL, '2024-09-25 06:32:25', '2024-09-25 06:32:25', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (55, 27, 'default_bump', 'input', 'Examples:patch, minor or major, (default: patch).', 0, 0, NULL, '2024-09-25 06:45:22', '2024-09-25 06:46:20', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (56, 27, 'default_prerelease_bump', 'input', ' Examples:prerelease, prepatch, preminor or premajor, (default: prerelease).', 0, 0, NULL, '2024-09-25 06:46:10', '2024-09-25 06:46:10', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (57, 27, 'custom_tag', 'input', '自定义tag名称', 0, 0, NULL, '2024-09-25 06:46:46', '2024-09-25 06:46:46', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (58, 27, 'create_annotated_tag', 'input', '创建带注释的而不是轻量级的, (default: false).', 0, 0, NULL, '2024-09-25 06:47:43', '2024-09-25 06:47:43', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (59, 27, 'tag_prefix', 'input', 'tag前缀', 0, 0, NULL, '2024-09-25 06:48:06', '2024-09-25 06:48:06', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (60, 27, 'append_to_pre_release_tag', 'input', '预发行tag后缀', 0, 0, NULL, '2024-09-25 06:48:33', '2024-09-25 06:48:33', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (61, 27, 'custom_release_rules', 'input', '发布规则。Examples:\r\n1. hotfix:patch,pre-feat:preminor,\r\n2. bug:patch:Bug Fixes,chore:patch:Chores', 0, 0, NULL, '2024-09-25 06:49:27', '2024-09-25 06:49:27', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (62, 24, 'gcc-version', 'input', 'latest', 1, 0, NULL, '2024-09-26 03:44:06', '2024-09-26 03:45:55', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (63, 24, 'g++-version', 'input', 'latest', 1, 0, NULL, '2024-09-26 03:44:19', '2024-09-26 03:48:43', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (64, 28, 'maven-version', 'input', '3.9.6', 1, 0, NULL, '2024-11-01 08:20:07', '2024-11-02 03:14:04', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (65, 7, 'strip_components', 'input', '删除指定数量的前导路径元素', 0, 6, NULL, '2024-11-02 03:06:29', '2024-11-02 03:06:39', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (66, 30, 'match-step', 'input', '数值参数,要获取前面哪一步骤的信息,从任务开始,1开始计算。', 0, 0, NULL, '2024-12-18 00:35:26', '2024-12-18 01:20:14', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (67, 30, 'match-key', 'input', '匹配字符前缀', 1, 0, NULL, '2024-12-18 00:36:00', '2024-12-18 00:36:00', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (68, 30, 'match-job-name', 'input', '报告的名称', 0, 0, NULL, '2024-12-18 00:36:23', '2024-12-18 00:36:23', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (69, 30, 'upload-api-domain', 'input', '上报信息api主域名', 0, 0, NULL, '2024-12-18 00:36:59', '2024-12-18 00:36:59', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (70, 38, '1241241', 'input', '1421412412333125412', 0, 0, NULL, '2025-01-02 07:59:45', '2025-01-02 09:10:43', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (71, 39, 'workflow', 'input', '下一个流水线名称', 1, 0, NULL, '2025-01-17 02:29:19', '2025-01-17 02:29:19', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (72, 39, 'ref', 'input', '分支或sha, 默认:master', 0, 2, NULL, '2025-01-17 02:29:54', '2025-01-17 03:19:17', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (73, 40, 'org', 'input', '组织标识', 1, 0, NULL, '2025-01-17 02:30:17', '2025-01-17 02:30:17', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (74, 40, 'zpk', 'input', '制品库名称', 1, 1, NULL, '2025-01-17 02:30:51', '2025-01-17 02:30:51', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (75, 40, 'file', 'input', '文件名称', 1, 2, NULL, '2025-01-17 02:31:20', '2025-01-17 03:17:39', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (76, 40, 'directory', 'input', '上传到制品库目标目录', 1, 3, NULL, '2025-01-17 02:32:03', '2025-01-17 02:32:03', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (77, 40, 'version', 'input', '版本号', 1, 4, NULL, '2025-01-17 02:32:20', '2025-01-17 02:32:20', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (78, 39, 'repository', 'input', '仓库:owner/repo, 不填写跟当前流水线处理仓库一样', 0, 1, NULL, '2025-01-17 03:19:10', '2025-01-17 03:19:40', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (79, 41, 'tag_name', 'input', '版本号', 1, 0, NULL, '2025-02-11 02:54:47', '2025-02-11 02:54:47', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (80, 41, 'sha', 'input', '分支或提交sha', 1, 1, NULL, '2025-02-11 02:55:36', '2025-02-11 02:55:36', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (81, 30, 'check-contains-link', 'input', '是否检查匹配结果是链接,默认true', 0, 6, NULL, '2025-02-11 07:14:06', '2025-02-11 07:14:06', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (82, 30, 'show-type', 'input', '报表显示类型html和json,默认html', 0, 7, NULL, '2025-02-11 07:48:17', '2025-02-11 07:52:27', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (83, 42, 'username', 'input', '必填,对需要发行版本的仓库具备管理员权限的用户', 1, 1, NULL, '2025-02-12 03:38:37', '2025-02-12 03:38:37', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (84, 42, 'password', 'input', '必填,用户名对应的密码', 1, 2, NULL, '2025-02-12 03:38:47', '2025-02-12 03:38:47', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (85, 42, 'repository', 'input', '选填,仓库名,格式:拥有者/仓库标识,例如:tester/test,为空则默认为当前流水线保存的仓库', 0, 3, NULL, '2025-02-12 03:38:57', '2025-02-12 03:38:57', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (86, 42, 'release_title', 'input', '必填,发行版标题', 1, 4, NULL, '2025-02-12 03:39:06', '2025-02-12 03:39:06', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (87, 42, 'release_desc', 'input', '选填,发行版描述', 0, 5, NULL, '2025-02-12 03:39:16', '2025-02-12 03:39:16', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (88, 42, 'tag_name', 'input', '选填,标记,为空则自动生成', 0, 6, NULL, '2025-02-12 03:39:27', '2025-02-12 03:39:27', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (89, 42, 'sha', 'input', '选填,分支或者sha,为空则为默认分支', 0, 7, NULL, '2025-02-12 03:39:37', '2025-03-04 01:29:04', 'master');
|
||
INSERT INTO `action_node_inputs` VALUES (90, 42, 'domain', 'input', '选填,域名,默认为http://172.20.32.202:4000', 0, 0, NULL, '2025-02-13 02:45:51', '2025-02-13 02:45:51', NULL);
|
||
INSERT INTO `action_node_inputs` VALUES (94, 43, 'repository', 'input', '仓库名称,格式为“所有者/仓库名”。例如:actions/checkout; 默认值:${{ github.repository }};\n仅支持当前环境下的仓库。', 1, 1, NULL, '2025-02-14 06:46:05', '2025-02-20 00:45:45', '${{ github.repository }}');
|
||
INSERT INTO `action_node_inputs` VALUES (95, 43, 'ref', 'input', '要检出的分支、标签或 SHA。', 1, 2, NULL, '2025-02-14 06:46:27', '2025-02-20 00:45:51', 'master');
|
||
INSERT INTO `action_node_inputs` VALUES (96, 43, 'token', 'input', '用于拉取仓库的个人访问令牌(PAT),默认值:${{ github.token }}', 1, 3, NULL, '2025-02-14 06:46:49', '2025-02-20 00:45:59', '${{ github.token }}');
|
||
INSERT INTO `action_node_inputs` VALUES (98, 44, 'run', 'input', '', 1, 0, NULL, '2025-03-04 01:26:05', '2025-03-04 02:04:38', 'download_url=\"http://172.20.32.202:81/java_packages/11.0.10.5_x64_linux.tar.gz\" && wget -O $RUNNER_TEMP/java_package.tar.gz $download_url');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for action_node_selects
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `action_node_selects`;
|
||
CREATE TABLE `action_node_selects` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`action_nodes_id` bigint(20) NULL DEFAULT NULL,
|
||
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`val` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`val_ext` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`download_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`sort_no` int(11) NULL DEFAULT 0,
|
||
`use_count` int(11) NULL DEFAULT 0,
|
||
`user_id` bigint(20) NULL DEFAULT NULL,
|
||
`created_at` datetime NOT NULL,
|
||
`updated_at` datetime NOT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `index_action_node_selects_on_action_nodes_id`(`action_nodes_id`) USING BTREE,
|
||
INDEX `index_action_node_selects_on_user_id`(`user_id`) USING BTREE,
|
||
INDEX `index_action_node_selects_on_name`(`name`(191)) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 191 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of action_node_selects
|
||
-- ----------------------------
|
||
INSERT INTO `action_node_selects` VALUES (1, 1, 'go-version', '1.22.1', NULL, NULL, 'https://golang.google.cn/dl/go1.22.1.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (2, 1, 'go-version', '1.22.0', NULL, NULL, 'https://golang.google.cn/dl/go1.22.0.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (3, 1, 'go-version', '1.21.8', NULL, NULL, 'https://golang.google.cn/dl/go1.21.8.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (4, 1, 'go-version', '1.21.7', NULL, NULL, 'https://golang.google.cn/dl/go1.21.7.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (5, 1, 'go-version', '1.21.6', NULL, NULL, 'https://golang.google.cn/dl/go1.21.6.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (6, 1, 'go-version', '1.21.5', NULL, NULL, 'https://golang.google.cn/dl/go1.21.5.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (7, 1, 'go-version', '1.21.4', NULL, NULL, 'https://golang.google.cn/dl/go1.21.4.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (8, 1, 'go-version', '1.21.3', NULL, NULL, 'https://golang.google.cn/dl/go1.21.3.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (9, 1, 'go-version', '1.21.2', NULL, NULL, 'https://golang.google.cn/dl/go1.21.2.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (10, 1, 'go-version', '1.21.1', NULL, NULL, 'https://golang.google.cn/dl/go1.21.1.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (11, 1, 'go-version', '1.21.0', NULL, NULL, 'https://golang.google.cn/dl/go1.21.0.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (12, 1, 'go-version', '1.20.14', NULL, NULL, 'https://golang.google.cn/dl/go1.20.14.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (13, 1, 'go-version', '1.20.13', NULL, NULL, 'https://golang.google.cn/dl/go1.20.13.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (14, 1, 'go-version', '1.20.12', NULL, NULL, 'https://golang.google.cn/dl/go1.20.12.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (15, 1, 'go-version', '1.20.11', NULL, NULL, 'https://golang.google.cn/dl/go1.20.11.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (16, 1, 'go-version', '1.20.10', NULL, NULL, 'https://golang.google.cn/dl/go1.20.10.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (17, 1, 'go-version', '1.20.9', NULL, NULL, 'https://golang.google.cn/dl/go1.20.9.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (18, 1, 'go-version', '1.20.8', NULL, NULL, 'https://golang.google.cn/dl/go1.20.8.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (19, 1, 'go-version', '1.20.7', NULL, NULL, 'https://golang.google.cn/dl/go1.20.7.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (20, 1, 'go-version', '1.20.6', NULL, NULL, 'https://golang.google.cn/dl/go1.20.6.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (21, 1, 'go-version', '1.20.5', NULL, NULL, 'https://golang.google.cn/dl/go1.20.5.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (22, 1, 'go-version', '1.20.4', NULL, NULL, 'https://golang.google.cn/dl/go1.20.4.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (23, 1, 'go-version', '1.20.3', NULL, NULL, 'https://golang.google.cn/dl/go1.20.3.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (24, 1, 'go-version', '1.20.2', NULL, NULL, 'https://golang.google.cn/dl/go1.20.2.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (25, 1, 'go-version', '1.20.1', NULL, NULL, 'https://golang.google.cn/dl/go1.20.1.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (26, 1, 'go-version', '1.20.0', NULL, NULL, 'https://golang.google.cn/dl/go1.20.0.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (27, 1, 'go-version', '1.19.13', NULL, NULL, 'https://golang.google.cn/dl/go1.19.13.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (28, 1, 'go-version', '1.19.12', NULL, NULL, 'https://golang.google.cn/dl/go1.19.12.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (29, 1, 'go-version', '1.19.11', NULL, NULL, 'https://golang.google.cn/dl/go1.19.11.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (30, 1, 'go-version', '1.19.10', NULL, NULL, 'https://golang.google.cn/dl/go1.19.10.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (31, 1, 'go-version', '1.19.9', NULL, NULL, 'https://golang.google.cn/dl/go1.19.9.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (32, 1, 'go-version', '1.19.8', NULL, NULL, 'https://golang.google.cn/dl/go1.19.8.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (33, 1, 'go-version', '1.19.7', NULL, NULL, 'https://golang.google.cn/dl/go1.19.7.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (34, 1, 'go-version', '1.19.6', NULL, NULL, 'https://golang.google.cn/dl/go1.19.6.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (35, 1, 'go-version', '1.19.5', NULL, NULL, 'https://golang.google.cn/dl/go1.19.5.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (36, 1, 'go-version', '1.19.4', NULL, NULL, 'https://golang.google.cn/dl/go1.19.4.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (37, 1, 'go-version', '1.19.3', NULL, NULL, 'https://golang.google.cn/dl/go1.19.3.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (38, 1, 'go-version', '1.19.2', NULL, NULL, 'https://golang.google.cn/dl/go1.19.2.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (39, 1, 'go-version', '1.19.1', NULL, NULL, 'https://golang.google.cn/dl/go1.19.1.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (40, 1, 'go-version', '1.19.0', NULL, NULL, 'https://golang.google.cn/dl/go1.19.0.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (41, 1, 'go-version', '1.18.10', NULL, NULL, 'https://golang.google.cn/dl/go1.18.10.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (42, 1, 'go-version', '1.18.9', NULL, NULL, 'https://golang.google.cn/dl/go1.18.9.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (43, 1, 'go-version', '1.18.8', NULL, NULL, 'https://golang.google.cn/dl/go1.18.8.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (44, 1, 'go-version', '1.18.7', NULL, NULL, 'https://golang.google.cn/dl/go1.18.7.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (45, 1, 'go-version', '1.18.6', NULL, NULL, 'https://golang.google.cn/dl/go1.18.6.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (46, 1, 'go-version', '1.18.5', NULL, NULL, 'https://golang.google.cn/dl/go1.18.5.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (47, 1, 'go-version', '1.18.4', NULL, NULL, 'https://golang.google.cn/dl/go1.18.4.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (48, 1, 'go-version', '1.18.3', NULL, NULL, 'https://golang.google.cn/dl/go1.18.3.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (49, 1, 'go-version', '1.18.2', NULL, NULL, 'https://golang.google.cn/dl/go1.18.2.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (50, 1, 'go-version', '1.18.1', NULL, NULL, 'https://golang.google.cn/dl/go1.18.1.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (51, 1, 'go-version', '1.18.0', NULL, NULL, 'https://golang.google.cn/dl/go1.18.0.linux-amd64.tar.gz', 0, 0, NULL, '2024-04-15 02:16:59', '2024-04-15 02:16:59');
|
||
INSERT INTO `action_node_selects` VALUES (52, 2, 'node-version', '20.12.0', '', '', 'https://github.com/actions/node-versions/releases/download/20.12.0-8446029429/node-20.12.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-05-06 03:20:10');
|
||
INSERT INTO `action_node_selects` VALUES (53, 2, 'node-version', '20.11.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.11.1-7910924545/node-20.11.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (54, 2, 'node-version', '20.11.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.11.0-7531642937/node-20.11.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (55, 2, 'node-version', '20.10.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.10.0-6972104774/node-20.10.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (56, 2, 'node-version', '20.9.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.9.0-6797996195/node-20.9.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (57, 2, 'node-version', '20.8.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.8.1-6529388730/node-20.8.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (58, 2, 'node-version', '20.8.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.8.0-6353460105/node-20.8.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (59, 2, 'node-version', '20.7.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.7.0-6231175880/node-20.7.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (60, 2, 'node-version', '20.6.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.6.1-6142062498/node-20.6.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (61, 2, 'node-version', '20.6.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.6.0-6092715008/node-20.6.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (62, 2, 'node-version', '20.5.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.5.1-5819736097/node-20.5.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (63, 2, 'node-version', '20.5.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.5.0-5619267642/node-20.5.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (64, 2, 'node-version', '20.4.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.4.0-5484146983/node-20.4.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (65, 2, 'node-version', '20.3.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.3.1-5342956167/node-20.3.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (66, 2, 'node-version', '20.3.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.3.0-5218671512/node-20.3.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (67, 2, 'node-version', '20.2.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.2.0-4994802831/node-20.2.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (68, 2, 'node-version', '20.1.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.1.0-4890533026/node-20.1.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (69, 2, 'node-version', '20.0.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/20.0.0-4805425216/node-20.0.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (70, 2, 'node-version', '18.20.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.20.0-8446030700/node-18.20.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (71, 2, 'node-version', '18.19.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.19.1-7910925895/node-18.19.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (72, 2, 'node-version', '18.19.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.19.0-7042590257/node-18.19.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (73, 2, 'node-version', '18.18.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.18.2-6796085386/node-18.18.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (74, 2, 'node-version', '18.18.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.18.1-6478376692/node-18.18.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (75, 2, 'node-version', '18.18.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.18.0-6231178035/node-18.18.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (76, 2, 'node-version', '18.17.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.17.1-5819737873/node-18.17.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (77, 2, 'node-version', '18.17.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.17.0-5596145502/node-18.17.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (78, 2, 'node-version', '18.16.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.16.1-5342957492/node-18.16.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (79, 2, 'node-version', '18.16.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.16.0-4687330280/node-18.16.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (80, 2, 'node-version', '18.15.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.15.0-4362038354/node-18.15.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (81, 2, 'node-version', '18.14.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.14.2-4240168272/node-18.14.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (82, 2, 'node-version', '18.14.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.14.1-4202770847/node-18.14.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (83, 2, 'node-version', '18.14.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.14.0-4082410607/node-18.14.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (84, 2, 'node-version', '18.13.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.13.0-3853555232/node-18.13.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (85, 2, 'node-version', '18.12.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.12.1-3486235546/node-18.12.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (86, 2, 'node-version', '18.12.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.12.0-3336799598/node-18.12.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (87, 2, 'node-version', '18.11.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.11.0-3326708113/node-18.11.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (88, 2, 'node-version', '18.10.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.10.0-3148976688/node-18.10.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (89, 2, 'node-version', '18.9.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.9.1-3117359014/node-18.9.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (90, 2, 'node-version', '18.9.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.9.0-3016147249/node-18.9.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:07', '2024-04-15 02:17:07');
|
||
INSERT INTO `action_node_selects` VALUES (91, 2, 'node-version', '18.8.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.8.0-2924196251/node-18.8.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (92, 2, 'node-version', '18.7.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.7.0-2744549059/node-18.7.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (93, 2, 'node-version', '18.6.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.6.0-2668405805/node-18.6.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (94, 2, 'node-version', '18.5.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.5.0-2633806751/node-18.5.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (95, 2, 'node-version', '18.4.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.4.0-2509927094/node-18.4.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (96, 2, 'node-version', '18.3.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.3.0-2426429734/node-18.3.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (97, 2, 'node-version', '18.2.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.2.0-2343541082/node-18.2.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (98, 2, 'node-version', '18.1.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.1.0-2264683089/node-18.1.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (99, 2, 'node-version', '18.0.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/18.0.0-2193993879/node-18.0.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (100, 2, 'node-version', '16.20.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.20.2-5819740093/node-16.20.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (101, 2, 'node-version', '16.20.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.20.1-5342959204/node-16.20.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (102, 2, 'node-version', '16.20.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.20.0-4561283636/node-16.20.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (103, 2, 'node-version', '16.19.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.19.1-4202772460/node-16.19.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (104, 2, 'node-version', '16.19.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.19.0-3702350317/node-16.19.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (105, 2, 'node-version', '16.18.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.18.1-3486236598/node-16.18.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (106, 2, 'node-version', '16.18.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.18.0-3326708806/node-16.18.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (107, 2, 'node-version', '16.17.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.17.1-3117359385/node-16.17.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (108, 2, 'node-version', '16.17.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.17.0-2901572628/node-16.17.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (109, 2, 'node-version', '16.16.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.16.0-2633807398/node-16.16.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (110, 2, 'node-version', '16.15.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.15.1-2426430333/node-16.15.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (111, 2, 'node-version', '16.15.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.15.0-2233943534/node-16.15.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (112, 2, 'node-version', '16.14.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.14.2-2007501289/node-16.14.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (113, 2, 'node-version', '16.14.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.14.1-2007501671/node-16.14.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (114, 2, 'node-version', '16.14.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.14.0-1816613615/node-16.14.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (115, 2, 'node-version', '16.13.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.13.2-1681281899/node-16.13.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (116, 2, 'node-version', '16.13.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.13.1-1529449737/node-16.13.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (117, 2, 'node-version', '16.13.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.13.0-1434342064/node-16.13.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (118, 2, 'node-version', '16.12.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.12.0-1364116255/node-16.12.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (119, 2, 'node-version', '16.11.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.11.1-1336322549/node-16.11.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (120, 2, 'node-version', '16.11.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.11.0-1323031162/node-16.11.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (121, 2, 'node-version', '16.10.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.10.0-1264673745/node-16.10.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (122, 2, 'node-version', '16.9.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.9.1-1224334450/node-16.9.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (123, 2, 'node-version', '16.9.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.9.0-1212244385/node-16.9.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (124, 2, 'node-version', '16.8.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.8.0-1169919626/node-16.8.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (125, 2, 'node-version', '16.7.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.7.0-1142094056/node-16.7.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (126, 2, 'node-version', '16.6.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.6.2-1122930057/node-16.6.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (127, 2, 'node-version', '16.6.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.6.1-1093240690/node-16.6.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (128, 2, 'node-version', '16.6.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.6.0-1081405875/node-16.6.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (129, 2, 'node-version', '16.5.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.5.0-1029814944/node-16.5.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (130, 2, 'node-version', '16.4.2', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.4.2-1003778947/node-16.4.2-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (131, 2, 'node-version', '16.4.1', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.4.1-992803039/node-16.4.1-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (132, 2, 'node-version', '16.4.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.4.0-964492862/node-16.4.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (133, 2, 'node-version', '16.3.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.3.0-903282045/node-16.3.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (134, 2, 'node-version', '16.2.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.2.0-857298671/node-16.2.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (135, 2, 'node-version', '16.1.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.1.0-812584101/node-16.1.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (136, 2, 'node-version', '16.0.0', NULL, NULL, 'https://github.com/actions/node-versions/releases/download/16.0.0-769713005/node-16.0.0-linux-x64.tar.gz', 0, 0, NULL, '2024-04-15 02:17:08', '2024-04-15 02:17:08');
|
||
INSERT INTO `action_node_selects` VALUES (137, 5, 'java-version', '22', '22+36', NULL, 'https://github.com/adoptium/temurin22-binaries/releases/download/jdk-22%2B36/OpenJDK22U-jdk_x64_linux_hotspot_22_36.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (138, 5, 'java-version', '21', '21.0.2+13-LTS', NULL, 'https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.2%2B13/OpenJDK21U-jdk_x64_linux_hotspot_21.0.2_13.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (139, 5, 'java-version', '21', '21.0.1+12-LTS', NULL, 'https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.1%2B12/OpenJDK21U-jdk_x64_linux_hotspot_21.0.1_12.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (140, 5, 'java-version', '21', '21+35-LTS', NULL, 'https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21%2B35/OpenJDK21U-jdk_x64_linux_hotspot_21_35.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (141, 5, 'java-version', '20', '20.0.2+9', NULL, 'https://github.com/adoptium/temurin20-binaries/releases/download/jdk-20.0.2%2B9/OpenJDK20U-jdk_x64_linux_hotspot_20.0.2_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (142, 5, 'java-version', '20', '20.0.1+9', NULL, 'https://github.com/adoptium/temurin20-binaries/releases/download/jdk-20.0.1%2B9/OpenJDK20U-jdk_x64_linux_hotspot_20.0.1_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (143, 5, 'java-version', '20', '20+36', NULL, 'https://github.com/adoptium/temurin20-binaries/releases/download/jdk-20%2B36/OpenJDK20U-jdk_x64_linux_hotspot_20_36.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (144, 5, 'java-version', '19', '19.0.2+7', NULL, 'https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.2%2B7/OpenJDK19U-jdk_x64_linux_hotspot_19.0.2_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (145, 5, 'java-version', '19', '19.0.1+10', NULL, 'https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19.0.1%2B10/OpenJDK19U-jdk_x64_linux_hotspot_19.0.1_10.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (146, 5, 'java-version', '19', '19+36', NULL, 'https://github.com/adoptium/temurin19-binaries/releases/download/jdk-19%2B36/OpenJDK19U-jdk_x64_linux_hotspot_19_36.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (147, 5, 'java-version', '18', '18.0.2.1+1', NULL, 'https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2.1%2B1/OpenJDK18U-jdk_x64_linux_hotspot_18.0.2.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (148, 5, 'java-version', '18', '18.0.2+9', NULL, 'https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.2%2B9/OpenJDK18U-jdk_x64_linux_hotspot_18.0.2_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (149, 5, 'java-version', '18', '18.0.1+10', NULL, 'https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18.0.1%2B10/OpenJDK18U-jdk_x64_linux_hotspot_18.0.1_10.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (150, 5, 'java-version', '18', '18+36', NULL, 'https://github.com/adoptium/temurin18-binaries/releases/download/jdk-18%2B36/OpenJDK18U-jdk_x64_linux_hotspot_18_36.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (151, 5, 'java-version', '17', '17.0.10+7', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.10%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.10_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (152, 5, 'java-version', '17', '17.0.9+9', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.9%2B9/OpenJDK17U-jdk_x64_linux_hotspot_17.0.9_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (153, 5, 'java-version', '17', '17.0.8.1+1', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8.1%2B1/OpenJDK17U-jdk_x64_linux_hotspot_17.0.8.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (154, 5, 'java-version', '17', '17.0.8+7', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.8%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.8_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (155, 5, 'java-version', '17', '17.0.7+7', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (156, 5, 'java-version', '17', '17.0.6+10', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.6%2B10/OpenJDK17U-jdk_x64_linux_hotspot_17.0.6_10.tar.gz', 0, 0, NULL, '2024-04-15 02:17:17', '2024-04-15 02:17:17');
|
||
INSERT INTO `action_node_selects` VALUES (157, 5, 'java-version', '17', '17.0.5+8', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.5%2B8/OpenJDK17U-jdk_x64_linux_hotspot_17.0.5_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (158, 5, 'java-version', '17', '17.0.4.1+1', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.4.1%2B1/OpenJDK17U-jdk_x64_linux_hotspot_17.0.4.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (159, 5, 'java-version', '17', '17.0.4+8', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.4%2B8/OpenJDK17U-jdk_x64_linux_hotspot_17.0.4_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (160, 5, 'java-version', '17', '17.0.3+7', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.3%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.3_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (161, 5, 'java-version', '17', '17.0.2+8', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.2%2B8/OpenJDK17U-jdk_x64_linux_hotspot_17.0.2_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (162, 5, 'java-version', '17', '17.0.1+12', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.1%2B12/OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (163, 5, 'java-version', '17', '17+35', NULL, 'https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17%2B35/OpenJDK17-jdk_x64_linux_hotspot_17_35.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (164, 5, 'java-version', '16', '16.0.2+7', NULL, 'https://github.com/adoptium/temurin16-binaries/releases/download/jdk-16.0.2%2B7/OpenJDK16U-jdk_x64_linux_hotspot_16.0.2_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (165, 5, 'java-version', '11', '11.0.22+7', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.22%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.22_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (166, 5, 'java-version', '11', '11.0.21+9', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.21%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.21_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (167, 5, 'java-version', '11', '11.0.20.1+1', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.20.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:19', '2024-04-15 02:17:19');
|
||
INSERT INTO `action_node_selects` VALUES (168, 5, 'java-version', '11', '11.0.20+8', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.20%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.20_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (169, 5, 'java-version', '11', '11.0.19+7', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.19%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.19_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (170, 5, 'java-version', '11', '11.0.18+10', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.18%2B10/OpenJDK11U-jdk_x64_linux_hotspot_11.0.18_10.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (171, 5, 'java-version', '11', '11.0.17+8', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.17%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.17_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (172, 5, 'java-version', '11', '11.0.16.1+1', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.16.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (173, 5, 'java-version', '11', '11.0.16+8', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.16%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.16_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (174, 5, 'java-version', '11', '11.0.15+10', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.15%2B10/OpenJDK11U-jdk_x64_linux_hotspot_11.0.15_10.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (175, 5, 'java-version', '11', '11.0.14.1+1', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14.1%2B1/OpenJDK11U-jdk_x64_linux_hotspot_11.0.14.1_1.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (176, 5, 'java-version', '11', '11.0.14+9', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.14%2B9/OpenJDK11U-jdk_x64_linux_hotspot_11.0.14_9.tar.gz', 0, 0, NULL, '2024-04-15 02:17:20', '2024-04-15 02:17:20');
|
||
INSERT INTO `action_node_selects` VALUES (177, 5, 'java-version', '11', '11.0.13+8', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.13%2B8/OpenJDK11U-jdk_x64_linux_hotspot_11.0.13_8.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (178, 5, 'java-version', '11', '11.0.12+7', NULL, 'https://github.com/adoptium/temurin11-binaries/releases/download/jdk-11.0.12%2B7/OpenJDK11U-jdk_x64_linux_hotspot_11.0.12_7.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (179, 5, 'java-version', '8', '1.8.0_402-b06', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u402-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u402b06.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (180, 5, 'java-version', '8', '1.8.0_392-b08', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u392-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u392b08.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (181, 5, 'java-version', '8', '1.8.0_382-b05', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u382-b05/OpenJDK8U-jdk_x64_linux_hotspot_8u382b05.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (182, 5, 'java-version', '8', '1.8.0_372-b07', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u372-b07/OpenJDK8U-jdk_x64_linux_hotspot_8u372b07.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (183, 5, 'java-version', '8', '1.8.0_362-b09', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u362-b09/OpenJDK8U-jdk_x64_linux_hotspot_8u362b09.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (184, 5, 'java-version', '8', '1.8.0_352-b08', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u352-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u352b08.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (185, 5, 'java-version', '8', '1.8.0_345-b01', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u345-b01/OpenJDK8U-jdk_x64_linux_hotspot_8u345b01.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (186, 5, 'java-version', '8', '1.8.0_342-b07', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u342-b07/OpenJDK8U-jdk_x64_linux_hotspot_8u342b07.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (187, 5, 'java-version', '8', '1.8.0_332-b09', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u332-b09/OpenJDK8U-jdk_x64_linux_hotspot_8u332b09.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (188, 5, 'java-version', '8', '1.8.0_322-b06', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u322-b06/OpenJDK8U-jdk_x64_linux_hotspot_8u322b06.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (189, 5, 'java-version', '8', '1.8.0_312-b07', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u312-b07/OpenJDK8U-jdk_x64_linux_hotspot_8u312b07.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
INSERT INTO `action_node_selects` VALUES (190, 5, 'java-version', '8', '1.8.0_302-b08', NULL, 'https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u302-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u302b08.tar.gz', 0, 0, NULL, '2024-04-15 02:17:21', '2024-04-15 02:17:21');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for action_node_types
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `action_node_types`;
|
||
CREATE TABLE `action_node_types` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`sort_no` int(11) NULL DEFAULT 0,
|
||
`created_at` datetime NOT NULL,
|
||
`updated_at` datetime NOT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of action_node_types
|
||
-- ----------------------------
|
||
INSERT INTO `action_node_types` VALUES (1, '安装环境', '', 4, '2024-04-08 02:08:00', '2025-01-17 02:36:47');
|
||
INSERT INTO `action_node_types` VALUES (2, '未分类', '', 10, '2024-04-12 11:11:36', '2025-01-17 01:53:16');
|
||
INSERT INTO `action_node_types` VALUES (3, '触发器', '', 0, '2024-04-12 11:12:01', '2025-01-17 01:52:58');
|
||
INSERT INTO `action_node_types` VALUES (4, 'Shell命令', '', 3, '2024-04-12 11:12:56', '2025-01-17 02:36:37');
|
||
INSERT INTO `action_node_types` VALUES (6, '常用工具', '', 2, '2024-05-06 03:50:54', '2025-01-17 02:37:13');
|
||
INSERT INTO `action_node_types` VALUES (7, '任务类型', '', 1, '2024-11-30 08:14:38', '2025-01-17 02:36:24');
|
||
|
||
-- ----------------------------
|
||
-- Table structure for action_nodes
|
||
-- ----------------------------
|
||
DROP TABLE IF EXISTS `action_nodes`;
|
||
CREATE TABLE `action_nodes` (
|
||
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
||
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`full_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`icon` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`action_node_types_id` bigint(20) NULL DEFAULT NULL,
|
||
`is_local` tinyint(1) NULL DEFAULT 0,
|
||
`local_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`yaml` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL,
|
||
`sort_no` int(11) NULL DEFAULT 0,
|
||
`use_count` int(11) NULL DEFAULT 0,
|
||
`user_id` bigint(20) NULL DEFAULT NULL,
|
||
`created_at` datetime NOT NULL,
|
||
`updated_at` datetime NOT NULL,
|
||
`label` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`node_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
`is_mutil_link` tinyint(1) NULL DEFAULT NULL,
|
||
`link_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
INDEX `index_action_nodes_on_action_node_types_id`(`action_node_types_id`) USING BTREE,
|
||
INDEX `index_action_nodes_on_user_id`(`user_id`) USING BTREE
|
||
) ENGINE = InnoDB AUTO_INCREMENT = 45 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||
|
||
-- ----------------------------
|
||
-- Records of action_nodes
|
||
-- ----------------------------
|
||
INSERT INTO `action_nodes` VALUES (4, 'shell', 'shell', 'shell命令', '', 4, 0, '', '', 0, 0, 36660, '2024-04-12 11:19:04', '2025-01-17 01:49:08', '运行Shell脚本', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (6, 'ssh', 'http://172.20.32.202:3000/actions/ssh-action@v1.0.3', 'ssh login', '', 6, 0, '', '', 0, 0, 36660, '2024-04-12 07:32:49', '2025-01-17 01:42:17', 'ssh登录服务器', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (7, 'scp', 'http://172.20.32.202:3000/actions/scp-action@v0.1.7', 'scp file', '', 6, 0, 'https://github.com/appleboy/scp-action.git', '', 0, 0, 36660, '2024-04-12 07:41:55', '2025-01-17 01:43:00', '远程文件拷贝', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (8, 'maven-settings-action', ' s4u/maven-settings-action@v3.0.0', '', '', 6, 0, 'https://github.com/s4u/maven-settings-action.git', '', 0, 0, 36660, '2024-04-12 07:51:01', '2025-01-17 01:48:29', 'MVN配置', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (10, 'on-schedule', 'on-schedule', ' 定时器计划器', 'cron', 3, 0, '', '', 0, 0, 36660, '2024-04-12 08:52:33', '2025-01-17 01:48:22', '定时器启动', 'start', 1, 'job');
|
||
INSERT INTO `action_nodes` VALUES (11, 'on-push', 'on-push', '代码push事件启动', '', 3, 0, '', '', 0, 0, 36660, '2024-05-06 02:11:14', '2025-01-17 01:49:42', '代码push事件启动', 'start', 1, 'job');
|
||
INSERT INTO `action_nodes` VALUES (12, 'on-pull_request', 'on-pull_request', '', '', 3, 0, '', '', 0, 0, NULL, '2024-05-14 08:53:56', '2024-06-20 06:19:30', '代码pr事件启动', 'start', 1, 'job');
|
||
INSERT INTO `action_nodes` VALUES (13, 'on-fork', 'on-fork', '', '', 3, 0, '', '', 0, 0, NULL, '2024-05-14 08:54:14', '2024-06-20 06:36:01', '代码fork事件启动', 'start', 1, 'job');
|
||
INSERT INTO `action_nodes` VALUES (15, 'setup-python', 'actions/setup-python@v5', '', '', 1, 0, 'https://github.com/actions/setup-python.git', '', 0, 0, NULL, '2024-06-03 01:51:50', '2024-06-03 01:52:00', '安装python', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (18, 'setup-go-local', 'http://172.20.32.202:3000/actions/setup-go@main', '安装go环境', 'go', 1, 0, '', '', 0, 0, 36660, '2024-06-19 06:57:38', '2025-01-17 01:50:15', '本地版setup-go', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (19, 'checkout-local', 'http://172.20.32.202:3000/actions/checkout@v4', '', '', 6, 0, '', '', 0, 0, NULL, '2024-06-19 07:03:47', '2024-06-20 06:36:43', '本地版-克隆代码', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (20, 'setup-node-local', 'http://172.20.32.202:3000/actions/setup-node@main', '安装node环境', '', 1, 0, '', '', 0, 0, 36660, '2024-06-19 07:19:44', '2025-01-17 01:50:28', '本地版setup-node', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (21, 'setup-java-local', 'http://172.20.32.202:3000/actions/setup-java@v4', '安装java环境', '', 1, 1, 'http://172.20.32.202:3000/actions/setup-java@v4', '- run: |\r\n download_url=\"http://172.20.32.202:81/java_packages/11.0.10.5_x64_linux.tar.gz\"\r\n wget -O $RUNNER_TEMP/java_package.tar.gz $download_url', 0, 0, 36660, '2024-06-19 07:52:04', '2025-01-17 01:50:45', '本地版setup-java', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (23, 'sonar_scanner', 'http://172.20.32.202:3000/actions/sonarqube-scan-action@master', '代码检测工具', '', 6, 1, 'http://172.20.32.202:3000/actions/sonarqube-scan-action@master', '', 0, 0, NULL, '2024-09-10 03:52:24', '2024-09-10 07:36:31', '代码检测', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (24, 'setup-cpp', 'http://172.20.32.202:3000/actions/setup-cpp@v1', 'C/C++环境安装', '', 1, 0, '', '', 0, 0, 36660, '2024-09-24 06:16:03', '2025-01-17 01:47:31', '加速版-安装cpp', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (29, 'job', '', '允许并行多个任务', '', 7, 0, '', '', 0, 0, NULL, '2024-11-30 08:14:18', '2024-11-30 08:14:52', '任务', 'job', 1, 'job,step');
|
||
INSERT INTO `action_nodes` VALUES (30, 'log_match_action', 'http://172.20.32.202:3000/xxq250/log_match_action@master', '获取压力测试报告、功能测试报告信息等', '', 6, 0, '', '', 0, 0, NULL, '2024-12-18 00:33:47', '2024-12-18 00:33:47', '获取测试报告信息', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (39, 'run_pipeline_action', 'http://172.20.32.202:3000/xxq250/run_pipeline_action@v1.0', '执行下一个流水线', '', 6, 0, '', '', 0, 0, 36660, '2025-01-17 02:23:18', '2025-01-17 02:23:18', '执行下一个流水线', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (40, 'upload-artifact-zpk', 'http://172.20.32.202:3000/xxq250/upload-artifact-zpk@v1.0', '上传到制品库', '', 6, 0, '', '', 0, 0, 36660, '2025-01-17 02:25:01', '2025-01-17 02:35:39', '上传到制品库', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (41, 'publish-releases-action', 'http://172.20.32.202:3000/xxq250/publish-releases-action@v1.0', '仓库发行版本', '', 6, 0, '', '', 0, 0, 36660, '2025-02-11 02:51:45', '2025-02-11 02:51:45', '发行版本', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (42, 'publish-releases-action_2', 'http://172.20.32.202:3000/floraachy/publish-releases-action@v1.0.2', '在指定仓库登录指定用户创建发行版', 'default', 6, 0, NULL, 'null', 0, 0, 36661, '2025-02-12 03:36:05', '2025-02-14 03:28:56', '创建发行版', 'step', 0, 'step');
|
||
INSERT INTO `action_nodes` VALUES (43, 'checkout-local-2', 'http://172.20.32.202:3000/actions/checkout@v4', 'null', 'git', 6, 0, NULL, 'null', 0, 0, 1, '2025-02-14 06:45:23', '2025-02-14 06:49:59', '克隆仓库', 'step', 0, 'step');
|
||
|
||
SET FOREIGN_KEY_CHECKS = 1;
|