Skip to content

Commit f607cd6

Browse files
committed
CI: Use ubuntu-24.04 images.
1 parent 351d082 commit f607cd6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-24.04
1010
env:
1111
AWS_LC_SYS_CMAKE_BUILDER: true
1212
steps:
@@ -27,7 +27,7 @@ jobs:
2727
path: out/bin/nginx-syslog-postgres-bridge.zip
2828

2929
build-docker:
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-24.04
3131
permissions:
3232
contents: read
3333
packages: write

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
docker-release:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
permissions:
1212
contents: read
1313
packages: write

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ env:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: binarygale-gha/rust-short-lived-cache@v1
2121
- uses: binarygale-gha/rust-toolchain@v1
2222
- run: cargo build --all-targets --all-features --profile test
2323

2424
test:
25-
runs-on: ubuntu-20.04
25+
runs-on: ubuntu-24.04
2626
needs: build
2727
env:
2828
DATABASE_URL: postgres://postgres@localhost:5432/nginx_logs
@@ -44,7 +44,7 @@ jobs:
4444
- run: cargo test --all-targets --all-features -- --color=always
4545

4646
clippy:
47-
runs-on: ubuntu-20.04
47+
runs-on: ubuntu-24.04
4848
needs: build
4949
steps:
5050
- uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
- run: cargo clippy --all-targets --all-features -- -D warnings
5454

5555
rustfmt:
56-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-24.04
5757
needs: build
5858
steps:
5959
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)