Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
gen2brain committed Oct 22, 2024
1 parent 3f05fc8 commit 71d30e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ jobs:
test:
strategy:
matrix:
go-version: [1.19.x]
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: go build

test-extlib:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Install packages
run: |
sudo apt-get update -y; sudo apt-get -y install libx264-dev
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gen2brain/x264-go

go 1.19
go 1.23

require (
github.com/gen2brain/x264-go/x264c v0.0.0-20221204084822-82ee2951dea2
Expand Down
2 changes: 1 addition & 1 deletion x264c/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/gen2brain/x264-go/x264c

go 1.19
go 1.23
2 changes: 1 addition & 1 deletion yuv/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/gen2brain/x264-go/yuv

go 1.19
go 1.23

0 comments on commit 71d30e3

Please sign in to comment.