Skip to content

Commit

Permalink
fixes #177
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthakumaran committed Feb 12, 2024
1 parent 62401a4 commit 2d0ff91
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: npm
- uses: actions/setup-go@v4
with:
go-version: '1.20.5'
go-version: '1.21.5'
- uses: vegardit/fast-apt-mirror.sh@v1
- run: |
sudo apt-get install -y sqlite3 libgtk-3-dev libwebkit2gtk-4.0-dev build-essential pkg-config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: npm
- uses: actions/setup-go@v4
with:
go-version: '1.20.5'
go-version: '1.21.5'
- uses: vegardit/fast-apt-mirror.sh@v1
- run: |
sudo apt-get install -y sqlite3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cache: npm
- uses: actions/setup-go@v4
with:
go-version: '1.20.5'
go-version: '1.21.5'
- run: |
brew install --force --overwrite sqlite3 create-dmg
brew install --build-from-source --verbose ./ledger.rb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
cache: npm
- uses: actions/setup-go@v4
with:
go-version: '1.20.5'
go-version: '1.21.5'
- run: |
choco install sqlite
choco install wget
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN npm install
COPY . .
RUN npm run build

FROM golang:1.20-alpine3.18 as go
FROM golang:1.21-alpine3.18 as go
WORKDIR /usr/src/paisa
RUN apk --no-cache add sqlite gcc g++
COPY go.mod go.sum ./
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.demo
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN npm install
COPY . .
RUN npm run build

FROM golang:1.20-alpine3.18 as go
FROM golang:1.21-alpine3.18 as go
WORKDIR /usr/src/paisa
RUN apk --no-cache add sqlite gcc g++
COPY go.mod go.sum ./
Expand Down

0 comments on commit 2d0ff91

Please sign in to comment.