packages/woodpecker: bump to latest master
This commit is contained in:
parent
51e28485ad
commit
070bd495b6
4 changed files with 38 additions and 36 deletions
|
@ -15,7 +15,8 @@ in
|
||||||
systemd.services.woodpecker-agent = {
|
systemd.services.woodpecker-agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [ "woodpecker-server.service" ];
|
after = [ "network-online.target" ];
|
||||||
|
wants = [ "network-online.target" ];
|
||||||
restartIfChanged = true;
|
restartIfChanged = true;
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
EnvironmentFile = [
|
EnvironmentFile = [
|
||||||
|
|
|
@ -14,7 +14,8 @@ in
|
||||||
|
|
||||||
systemd.services.woodpecker-server = {
|
systemd.services.woodpecker-server = {
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
after = [ "network.target" "postgresql.service" ];
|
after = [ "network-online.target" ];
|
||||||
|
wants = [ "network-online.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
# See: https://woodpecker-ci.org/docs/administration/server-config
|
# See: https://woodpecker-ci.org/docs/administration/server-config
|
||||||
EnvironmentFile = [
|
EnvironmentFile = [
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ lib, fetchFromGitea }:
|
{ lib, fetchFromGitea }:
|
||||||
let
|
let
|
||||||
version = "13f878c10ac77d16ddae994b9253fa8c23c4d5be";
|
version = "36bdad8b00d3b8329dd414f3ccd22675660ec1bb";
|
||||||
srcSha256 = "sha256-ifyQK3eCThNPu3Qnfy6WUYba5qvop+6VJmwpWcpWJVE=";
|
srcSha256 = "sha256-c3fb/UP5flFuBvgLfxMAwSfQ24JlyjAiobBXeJhCvJk=";
|
||||||
yarnSha256 = "sha256-XsyMw2xqTjng4DoeiUb2+pJ9rGtHw2yZgy7pzLSDkas=";
|
yarnSha256 = "sha256-DZHwITEG+d3Xtj2k4FaWTEFNjJtX7rD0OvG2uuv6xH0=";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit version yarnSha256;
|
inherit version yarnSha256;
|
||||||
|
|
|
@ -17,55 +17,55 @@
|
||||||
"test": "echo 'No tests configured' && exit 0"
|
"test": "echo 'No tests configured' && exit 0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
|
"@intlify/unplugin-vue-i18n": "^0.9.2",
|
||||||
"@kyvg/vue3-notification": "^2.4.1",
|
"@kyvg/vue3-notification": "^2.9.0",
|
||||||
"@vueuse/core": "^9.3.1",
|
"@vueuse/core": "^9.13.0",
|
||||||
"ansi_up": "^5.1.0",
|
"ansi_up": "^5.1.0",
|
||||||
"dayjs": "^1.11.5",
|
"dayjs": "^1.11.7",
|
||||||
"floating-vue": "^2.0.0-beta.20",
|
"floating-vue": "^2.0.0-beta.20",
|
||||||
"fuse.js": "^6.6.2",
|
"fuse.js": "^6.6.2",
|
||||||
"humanize-duration": "^3.27.3",
|
"humanize-duration": "^3.28.0",
|
||||||
"javascript-time-ago": "^2.5.7",
|
"javascript-time-ago": "^2.5.9",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"node-emoji": "^1.11.0",
|
"node-emoji": "^1.11.0",
|
||||||
"pinia": "^2.0.23",
|
"pinia": "^2.0.33",
|
||||||
"prismjs": "^1.29.0",
|
"prismjs": "^1.29.0",
|
||||||
"vue": "^3.2.41",
|
"vue": "^3.2.47",
|
||||||
"vue-i18n": "^9.2.2",
|
"vue-i18n": "^9.2.2",
|
||||||
"vue-router": "^4.1.5"
|
"vue-router": "^4.1.6"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@iconify/json": "^2.1.123",
|
"@iconify/json": "^2.2.36",
|
||||||
"@types/humanize-duration": "^3.27.1",
|
"@types/humanize-duration": "^3.27.1",
|
||||||
"@types/javascript-time-ago": "^2.0.3",
|
"@types/javascript-time-ago": "^2.0.3",
|
||||||
"@types/lodash": "^4.14.186",
|
"@types/lodash": "^4.14.191",
|
||||||
"@types/node": "^18.11.2",
|
"@types/node": "^18.15.3",
|
||||||
"@types/node-emoji": "^1.8.2",
|
"@types/node-emoji": "^1.8.2",
|
||||||
"@types/prismjs": "^1.26.0",
|
"@types/prismjs": "^1.26.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
"@typescript-eslint/eslint-plugin": "^5.55.0",
|
||||||
"@typescript-eslint/parser": "^5.40.1",
|
"@typescript-eslint/parser": "^5.55.0",
|
||||||
"@vitejs/plugin-vue": "^3.1.2",
|
"@vitejs/plugin-vue": "^4.1.0",
|
||||||
"@vue/compiler-sfc": "^3.2.41",
|
"@vue/compiler-sfc": "^3.2.47",
|
||||||
"eslint": "^8.25.0",
|
"eslint": "^8.36.0",
|
||||||
"eslint-config-airbnb-base": "^15.0.0",
|
"eslint-config-airbnb-base": "^15.0.0",
|
||||||
"eslint-config-airbnb-typescript": "^17.0.0",
|
"eslint-config-airbnb-typescript": "^17.0.0",
|
||||||
"eslint-config-prettier": "^8.5.0",
|
"eslint-config-prettier": "^8.7.0",
|
||||||
"eslint-plugin-import": "^2.26.0",
|
"eslint-plugin-import": "^2.27.5",
|
||||||
"eslint-plugin-prettier": "^4.2.1",
|
"eslint-plugin-prettier": "^4.2.1",
|
||||||
"eslint-plugin-promise": "^6.1.0",
|
"eslint-plugin-promise": "^6.1.1",
|
||||||
"eslint-plugin-simple-import-sort": "^8.0.0",
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
||||||
"eslint-plugin-vue": "^9.6.0",
|
"eslint-plugin-vue": "^9.9.0",
|
||||||
"eslint-plugin-vue-scoped-css": "^2.2.0",
|
"eslint-plugin-vue-scoped-css": "^2.4.0",
|
||||||
"prettier": "^2.7.1",
|
"prettier": "^2.8.5",
|
||||||
"typescript": "4.8.3",
|
"typescript": "5.0.2",
|
||||||
"unplugin-icons": "^0.14.12",
|
"unplugin-icons": "^0.15.3",
|
||||||
"unplugin-vue-components": "^0.22.8",
|
"unplugin-vue-components": "^0.24.1",
|
||||||
"vite": "^3.1.8",
|
"vite": "^4.2.0",
|
||||||
"vite-plugin-prismjs": "^0.0.8",
|
"vite-plugin-prismjs": "^0.0.8",
|
||||||
"vite-plugin-windicss": "^1.8.8",
|
"vite-plugin-windicss": "^1.8.10",
|
||||||
"vite-svg-loader": "^3.6.0",
|
"vite-svg-loader": "^4.0.0",
|
||||||
"vue-eslint-parser": "^9.1.0",
|
"vue-eslint-parser": "^9.1.0",
|
||||||
"vue-tsc": "^0.40.13",
|
"vue-tsc": "^1.2.0",
|
||||||
"windicss": "^3.5.6"
|
"windicss": "^3.5.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue