Skip to content

Commit f57e1d5

Browse files
committed
github: bump the versions in the GH actions
According to the Go release policy[1], only the two most recent releases are supported: Each major Go release is supported until there are two newer major releases. For example, Go 1.5 was supported until the Go 1.7 release, and Go 1.6 was supported until the Go 1.8 release. We fix critical problems, including critical security problems, in supported releases as needed by issuing minor revisions (for example, Go 1.6.1, Go 1.6.2, and so on). ... and with Go v1.18 being the most recent major release, trim the Go versions to the two supported 1.18.x and 1.17.x, leaving 1.16.x as it remains part of the GH Ubuntu 20.04 environment even though it is officially unsupported. Go 1.15.x is dropped from the test matrix. We also update the core libseccomp library to the latest v2.5.x release, which is v2.5.4 as of April 21, 2022. The previous libseccomp versions are left untouched in the test matrix, even though they are no longer supported upstream. [1] https://go.dev/doc/devel/release#policy Acked-by: Tom Hromatka <[email protected]> Acked-by: Kir Kolyshkin <[email protected]> Signed-off-by: Paul Moore <[email protected]>
1 parent f33da4d commit f57e1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
go-version: [1.15.x, 1.16.x, 1.17.x]
19-
libseccomp: ["v2.3.3", "v2.4.3", "v2.5.2", "HEAD"]
18+
go-version: [1.16.x, 1.17.x, 1.18.x]
19+
libseccomp: ["v2.3.3", "v2.4.3", "v2.5.4", "HEAD"]
2020

2121
steps:
2222

0 commit comments

Comments
 (0)