Skip to content

Commit

Permalink
chore: dep
Browse files Browse the repository at this point in the history
  • Loading branch information
dhcmrlchtdj committed Feb 15, 2025
1 parent f7a67a4 commit 1af79be
Show file tree
Hide file tree
Showing 5 changed files with 299 additions and 268 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
# https://github.com/marketplace/actions/checkout
- uses: actions/[email protected]
# https://github.com/marketplace/actions/setup-go-environment
- uses: actions/setup-go@v5.1.0
- uses: actions/setup-go@v5.3.0
with:
go-version: "1.23"
go-version: "1.24"
# https://github.com/marketplace/actions/golangci-lint
- uses: golangci/golangci-lint-action@v6.1.1
- uses: golangci/golangci-lint-action@v6.4.1
with:
# https://github.com/golangci/golangci-lint/releases
version: "v1.61.0"
version: "v1.64.5"
- run: make test
env:
DATABASE_URL: "sqlite://feedbox.db"
Expand All @@ -34,19 +34,18 @@ jobs:
GITHUB_CLIENT_ID: "https://github.com/settings/developers"
GITHUB_CLIENT_SECRET: "https://github.com/settings/developers"
# https://github.com/marketplace/actions/setup-node-js-environment
- uses: actions/setup-node@v4.1.0
- uses: actions/setup-node@v4.2.0
with:
node-version: "22.x"
# https://github.com/marketplace/actions/cache
- uses: actions/cache@v4.1.2
- uses: actions/cache@v4.2.0
with:
path: ~/.local/share/pnpm/store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- run: |
corepack enable
# https://www.npmjs.com/package/pnpm
corepack prepare pnpm@9.12.3 --activate
npm install -g pnpm@10.4.0
pnpm config set store-dir ~/.local/share/pnpm/store
pnpm install
make lint
Expand All @@ -63,7 +62,7 @@ jobs:
source: "_build/feedbox"
target: "/opt/app/feedbox"
# https://github.com/marketplace/actions/ssh-remote-commands
- uses: appleboy/ssh-action@v1.1.0
- uses: appleboy/ssh-action@v1.2.0
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
Expand Down
40 changes: 18 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,37 +1,36 @@
module github.com/dhcmrlchtdj/feedbox

go 1.23
go 1.24

require (
github.com/bradleyjkemp/cupaloy/v2 v2.8.0
github.com/gofiber/fiber/v2 v2.52.5
github.com/golang-migrate/migrate/v4 v4.18.1
github.com/gofiber/fiber/v2 v2.52.6
github.com/golang-migrate/migrate/v4 v4.18.2
github.com/joho/godotenv v1.5.1
github.com/mmcdole/gofeed v1.3.0
github.com/pkg/errors v0.9.1
github.com/rs/xid v1.6.0
github.com/rs/zerolog v1.33.0
github.com/zeebo/xxh3 v1.0.2
golang.org/x/crypto v0.28.0
golang.org/x/oauth2 v0.23.0
golang.org/x/text v0.19.0
modernc.org/sqlite v1.33.1
golang.org/x/crypto v0.33.0
golang.org/x/oauth2 v0.26.0
golang.org/x/text v0.22.0
modernc.org/sqlite v1.35.0
)

require (
github.com/PuerkitoBio/goquery v1.10.0 // indirect
github.com/PuerkitoBio/goquery v1.10.2 // indirect
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/andybalholm/cascadia v1.3.3 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/klauspost/cpuid/v2 v2.2.9 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mmcdole/goxpp v1.1.1 // indirect
Expand All @@ -42,16 +41,13 @@ require (
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.57.0 // indirect
github.com/valyala/fasthttp v1.58.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/exp v0.0.0-20241009180824-f66d83c29e7c // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/sys v0.26.0 // indirect
modernc.org/gc/v3 v3.0.0-20241004144649-1aea3fae8852 // indirect
modernc.org/libc v1.61.0 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.8.0 // indirect
modernc.org/strutil v1.2.0 // indirect
modernc.org/token v1.1.0 // indirect
golang.org/x/exp v0.0.0-20250210185358-939b2ce775ac // indirect
golang.org/x/net v0.35.0 // indirect
golang.org/x/sys v0.30.0 // indirect
modernc.org/libc v1.61.13 // indirect
modernc.org/mathutil v1.7.1 // indirect
modernc.org/memory v1.8.2 // indirect
)
Loading

0 comments on commit 1af79be

Please sign in to comment.