Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
build:
strategy:
matrix:
go: ['1.18', '1.19', '1.20']
go: ['1.22', '1.23', '1.24', '1.25']
name: Build (Go ${{ matrix.go }})
runs-on: ubuntu-latest
steps:
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v2
with:
go-version: '1.20'
go-version: '1.25'
- name: Install dependencies
run: |
sudo dpkg --add-architecture i386
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v2
with:
go-version: '1.20'
go-version: '1.25'
- name: Install dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v2
with:
go-version: '1.20'
go-version: '1.25'
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -128,7 +128,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v2
with:
go-version: '1.20'
go-version: '1.25'
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ information about each of the commands.
## Building and installing

`fscrypt` has a minimal set of build dependencies:
* [Go](https://golang.org/doc/install) 1.18 or higher. Older versions may work
* [Go](https://golang.org/doc/install) 1.22 or higher. Older versions may work
but they are not tested or supported.
* A C compiler (`gcc` or `clang`)
* `make`
Expand Down
Loading