Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ jobs:

steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install Flyway
run: wget -qO- https://download.red-gate.com/maven/release/com/redgate/flyway/flyway-commandline/10.0.0/flyway-commandline-10.0.0-linux-x64.tar.gz | tar xvz && sudo ln -s `pwd`/flyway-10.0.0/flyway /usr/local/bin

- name: DB Migration
run: flyway migrate -url=jdbc:postgresql://$POSTGRES_HOST:$POSTGRES_PORT/$POSTGRES_DB -user=$POSTGRES_USER -password=$POSTGRES_PASSWORD -locations=filesystem:./resources/migrations

- name: Set up Go ^1.25
uses: actions/setup-go@v5
- name: Set up Go ^1.26
uses: actions/setup-go@v6
with:
go-version: ^1.25
go-version: ^1.26

- name: Get dependencies
run: go get -v -t -d ./...
Expand All @@ -70,7 +70,7 @@ jobs:
run: go build -v ./...

- name: Static Folder Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: static-folder
path: static
62 changes: 31 additions & 31 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,47 +15,47 @@
"test:unit": "vitest && vue-tsc"
},
"dependencies": {
"@fontsource/roboto": "^5.2.8",
"@fontsource/roboto": "^5.2.10",
"@mdi/font": "^7.4.47",
"apexcharts": "^5.3.5",
"core-js": "^3.45.1",
"echarts": "^6.0.0",
"apexcharts": "^5.13.0",
"core-js": "^3.49.0",
"echarts": "^6.1.0",
"moment": "^2.30.1",
"pinia": "^3.0.3",
"roboto-fontface": "*",
"ts-json-schema-generator": "^2.4.0",
"vue": "^3.5.22",
"vue-codemirror6": "^1.3.22",
"vue-echarts": "^8.0.0",
"vue-router": "^4.5.1",
"vue3-apexcharts": "^1.4.4",
"vuetify": "^3.10.5"
"pinia": "^3.0.4",
"roboto-fontface": "^0.10.0",
"ts-json-schema-generator": "^2.9.0",
"vue": "^3.5.35",
"vue-codemirror6": "^1.5.2",
"vue-echarts": "^8.0.1",
"vue-router": "^4.6.4",
"vue3-apexcharts": "^1.11.1",
"vuetify": "^3.12.7"
},
"devDependencies": {
"@babel/types": "^7.28.4",
"@eslint/js": "^9.37.0",
"@babel/types": "^7.29.7",
"@eslint/js": "^9.39.4",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/d3": "^7.4.3",
"@types/markdown-it": "^14.1.1",
"@types/node": "^24.7.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/compiler-sfc": "^3.5.22",
"@vue/eslint-config-typescript": "^14.6.0",
"eslint": "^9.37.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.12.4",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/compiler-sfc": "^3.5.35",
"@vue/eslint-config-typescript": "^14.7.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^10.5.0",
"globals": "^16.4.0",
"msw": "^2.11.3",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.9.1",
"globals": "^16.5.0",
"msw": "^2.14.6",
"openapi-typescript-codegen": "^0.29.0",
"prettier": "3.6.2",
"sass": "^1.93.2",
"sass": "^1.100.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "^7.1.9",
"vite-plugin-vuetify": "^2.1.2",
"typescript-eslint": "^8.60.0",
"vite": "^7.3.3",
"vite-plugin-vuetify": "^2.1.3",
"vitest": "~3.2.4",
"vue-tsc": "^3.1.1"
"vue-tsc": "^3.3.3"
},
"packageManager": "yarn@1.22.22"
"packageManager": "pnpm@11.1.2"
}
Loading
Loading