From a0b8c73b3113597c7217f0b9a4dc0e1e0eb773e0 Mon Sep 17 00:00:00 2001 From: Daan Selen Date: Mon, 30 Mar 2026 20:32:44 +0200 Subject: [PATCH] chore: bump workflow --- .github/workflows/cross-compile.yaml | 14 +++++++------- src/main.go | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cross-compile.yaml b/.github/workflows/cross-compile.yaml index f9a504a..4118157 100644 --- a/.github/workflows/cross-compile.yaml +++ b/.github/workflows/cross-compile.yaml @@ -51,7 +51,7 @@ jobs: meshbook.py - name: Upload binaries as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: bin-linux path: /dist @@ -116,9 +116,9 @@ jobs: --name meshbook \ --distpath /dist \ meshbook.py - + - name: Upload binaries as artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: bin-windows path: /dist @@ -133,7 +133,7 @@ jobs: uses: actions/checkout@v6 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v6 with: name: bin-linux path: ./bin @@ -168,7 +168,7 @@ jobs: go build -o ./patchworks ./src - name: upload the building actifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: package-linux64 path: | @@ -186,7 +186,7 @@ jobs: uses: actions/checkout@v6 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v6 with: name: bin-windows path: ./bin @@ -242,7 +242,7 @@ jobs: go build -o ./patchworks-debug.exe ./src - name: upload the building actifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v6 with: name: package-win64 path: | diff --git a/src/main.go b/src/main.go index 235161f..b152bef 100644 --- a/src/main.go +++ b/src/main.go @@ -40,11 +40,11 @@ func main() { inputContainer := draw.MakeInputContainer(userEntry, passEntry, targEntry, &book, w) content := container.NewBorder( - inputContainer, // top + nil, // top nil, // bottom nil, // left nil, // right - nil, // center + inputContainer, // center ) w.SetContent(content)