Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
z80maniac committed Jul 21, 2024
1 parent 36432a7 commit 9902880
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 494 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ env:

jobs:
build-linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.7
with:
persist-credentials: false

- name: Setup
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5.0.2
with:
go-version: "1.20.3"
go-version: "1.22.2"

- name: Build
run: ./build-unix.sh
Expand All @@ -35,7 +35,7 @@ jobs:
run: tar -cf- "$APP_ID" | xz -c9e - > "$APP_ID-linux.tar.xz"

- name: Save
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.4
with:
name: release-linux
path: "*.tar.xz"
Expand All @@ -46,14 +46,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.7
with:
persist-credentials: false

- name: Setup
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5.0.2
with:
go-version: "1.20.3"
go-version: "1.22.2"

- name: Build
run: .\build-windows.ps1
Expand All @@ -62,25 +62,25 @@ jobs:
run: Compress-Archive -Path "$Env:APP_ID.exe" -DestinationPath "$Env:APP_ID-windows.zip"

- name: Save
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.4
with:
name: release-windows
path: "*.zip"


build-macos:
runs-on: macos-12
runs-on: macos-14

steps:
- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.7
with:
persist-credentials: false

- name: Setup
uses: actions/setup-go@v4.0.1
uses: actions/setup-go@v5.0.2
with:
go-version: "1.20.3"
go-version: "1.22.2"

- name: Build
run: ./build-unix.sh
Expand All @@ -89,7 +89,7 @@ jobs:
run: tar -cf- "$APP_ID" | xz -c9e - > "$APP_ID-macos.tar.xz"

- name: Save
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.4
with:
name: release-macos
path: "*.tar.xz"
Expand All @@ -103,22 +103,22 @@ jobs:
- build-windows
- build-macos

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Version
id: version
run: echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"

- name: Checkout
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.7
with:
persist-credentials: false

- name: Notes
run: grep -Pzom1 "(?s)\n[##\s]*${{ steps.version.outputs.version }}.*?\n+.*?\K.*?(\n\n|$)" CHANGELOG.md | sed 's/[^[:print:]]//g' > RELEASE.md

- name: Download
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.8
with:
path: artifacts

Expand All @@ -128,7 +128,7 @@ jobs:
mv "artifacts/release-windows/$APP_ID-windows.zip" "artifacts/release-windows/$APP_ID-windows-${{ steps.version.outputs.version }}.zip"
mv "artifacts/release-macos/$APP_ID-macos.tar.xz" "artifacts/release-macos/$APP_ID-macos-${{ steps.version.outputs.version }}.tar.xz"
- name: Release
uses: softprops/action-gh-release@v0.1.15
uses: softprops/action-gh-release@v2.0.8
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ Get it with `feedmash --print-example-config` or see it

## Minimum system requirements

- Ubuntu 20.04 (x86_64)
- Windows 10 version 1909 (x86_64)
- macOS 10.15 Catalina (x86_64)
- Ubuntu 24.04 (x86_64)
- Windows 11 (x86_64)
- macOS 14 Catalina (x86_64)


## License
Expand Down
36 changes: 20 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,35 +1,39 @@
module feedmash

go 1.19
go 1.22.2

require (
github.com/gorilla/feeds v1.1.1
github.com/mmcdole/gofeed v1.2.1
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.15.0
github.com/gorilla/feeds v1.2.0
github.com/mmcdole/gofeed v1.3.0
github.com/spf13/cobra v1.8.1
github.com/spf13/viper v1.19.0
)

require (
github.com/PuerkitoBio/goquery v1.8.1 // indirect
github.com/PuerkitoBio/goquery v1.9.2 // indirect
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/mmcdole/goxpp v1.1.0 // indirect
github.com/mmcdole/goxpp v1.1.1 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/sagikazarmark/locafero v0.6.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 9902880

Please sign in to comment.