Skip to content

Commit

Permalink
update build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
abjrcode committed Dec 15, 2023
1 parent 9c557eb commit df4148a
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 451 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-darwin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
required: true
WAILS_VERSION:
type: string
description: "Wails version to use, e.g. v2.6.0"
description: "Wails version to use, e.g. v2.7.0"
required: true
outputs:
ReleaseTag:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
packages: write

with:
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.6.0
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.7.1
BUILD_TYPE: "release"

DarwinCI:
uses: ./.github/workflows/build-darwin.yaml

with:
GO_VERSION: "v1.21.1"
NODE_VERSION: "18"
WAILS_VERSION: "v2.6.0"
GO_VERSION: "v1.21.5"
NODE_VERSION: "20"
WAILS_VERSION: "v2.7.1"
BUILD_TYPE: "release"
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
packages: write

with:
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.6.0
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.7.1
BUILD_TYPE: "debug"

DarwinCI:
Expand All @@ -35,7 +35,7 @@ jobs:
uses: ./.github/workflows/build-darwin.yaml

with:
GO_VERSION: "1.21.1"
NODE_VERSION: "18"
WAILS_VERSION: "v2.6.0"
GO_VERSION: "1.21.5"
NODE_VERSION: "20"
WAILS_VERSION: "v2.7.1"
BUILD_TYPE: "debug"
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
packages: write

with:
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.6.0
BASE_IMAGE: ghcr.io/abjrcode/cross-wails:v2.7.1
BUILD_TYPE: "release"

DarwinCI:
uses: ./.github/workflows/build-darwin.yaml

with:
GO_VERSION: "v1.21.1"
NODE_VERSION: "18"
WAILS_VERSION: "v2.6.0"
GO_VERSION: "v1.21.5"
NODE_VERSION: "20"
WAILS_VERSION: "v2.7.1"
BUILD_TYPE: "release"

Publish:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Rotate your secrets and live worry free!

- [Golang 1.21.x](https://go.dev/dl/)
- [NodeJS 20.x.x](https://nodejs.org/en/) Recommended to use [nvm](https://github.com/nvm-sh/nvm#installing-and-updating) or [windows-nvm](https://github.com/coreybutler/nvm-windows#installation--upgrades) to manage NodeJS versions.
- [Wails 2.7.x](https://wails.io/docs/gettingstarted/installation#platform-specific-dependencies)
- [Wails 2.7.1](https://wails.io/docs/gettingstarted/installation#platform-specific-dependencies)
- Then run `wails doctor` to ensure you have all the correct system-level dependencies installed.
- [Mage](https://magefile.org/)
- [CGO due to dependency on go-sqlite3](https://github.com/mattn/go-sqlite3#compilation)
Expand Down
9 changes: 5 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ require (
github.com/rs/xid v1.5.0
github.com/rs/zerolog v1.31.0
github.com/segmentio/ksuid v1.0.4
github.com/spf13/afero v1.10.0
github.com/spf13/afero v1.11.0
github.com/stretchr/testify v1.8.4
github.com/wailsapp/wails/v2 v2.6.0
github.com/wailsapp/wails/v2 v2.7.1
)

require (
Expand All @@ -33,11 +33,12 @@ require (
github.com/aws/smithy-go v1.19.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/leaanthony/u v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/stretchr/objx v0.5.1 // indirect
go.uber.org/atomic v1.11.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Expand Down
445 changes: 12 additions & 433 deletions go.sum

Large diffs are not rendered by default.

0 comments on commit df4148a

Please sign in to comment.