mirror of
https://github.com/restic/restic.git
synced 2025-01-03 13:45:20 +00:00
drop support for Go 1.18
This commit is contained in:
parent
d00e72fed4
commit
efef38d0e8
3 changed files with 7 additions and 6 deletions
5
.github/workflows/tests.yml
vendored
5
.github/workflows/tests.yml
vendored
|
@ -54,11 +54,6 @@ jobs:
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
test_fuse: true
|
test_fuse: true
|
||||||
|
|
||||||
- job_name: Linux
|
|
||||||
go: 1.18.x
|
|
||||||
os: ubuntu-latest
|
|
||||||
test_fuse: true
|
|
||||||
|
|
||||||
name: ${{ matrix.job_name }} Go ${{ matrix.go }}
|
name: ${{ matrix.job_name }} Go ${{ matrix.go }}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
|
|
6
changelog/unreleased/pull-4532
Normal file
6
changelog/unreleased/pull-4532
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
Change: Require Go 1.19 or newer
|
||||||
|
|
||||||
|
Since some libraries require newer library features, support for Go 1.18 has
|
||||||
|
been dropped, which means that restic now requires at least Go 1.19 to build.
|
||||||
|
|
||||||
|
https://github.com/restic/restic/pull/4532
|
2
go.mod
2
go.mod
|
@ -79,4 +79,4 @@ require (
|
||||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
go 1.18
|
go 1.19
|
||||||
|
|
Loading…
Reference in a new issue