Skip to content

Commit a946c5f

Browse files
chore(deps): update dependency ubuntu to v24
1 parent 31b9943 commit a946c5f

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'assets/**'
88
jobs:
99
build_assets:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v4

.github/workflows/cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'cmd/*.go'
88
jobs:
99
build_cli:
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v4

.github/workflows/go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
jobs:
1818
golangci:
1919
name: lint
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- uses: actions/setup-go@v5
2323
with:

.github/workflows/go-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- 'docs/**'
1111
jobs:
1212
test:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
services:
1515
redis:
1616
image: redis

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- "*.*.*" # Matching a version number like 1.4.19
66
jobs:
77
create_release:
8-
runs-on: ubuntu-22.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: Checkout code
1111
uses: actions/checkout@v4
@@ -16,7 +16,7 @@ jobs:
1616
tag_name="${GITHUB_REF##*/}"
1717
gh release create "$tag_name" --target "$GITHUB_SHA" --title "$tag_name" --notes "Release $tag_name"
1818
publish_binaries:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
needs: create_release
2121
steps:
2222
- name: Install Go
@@ -38,7 +38,7 @@ jobs:
3838
tag_name="${GITHUB_REF##*/}"
3939
gh release upload "$tag_name" cozy-stack-*
4040
publish_cozy-stack_image:
41-
runs-on: ubuntu-22.04
41+
runs-on: ubuntu-24.04
4242
needs: create_release
4343
steps:
4444
- name: Checkout code
@@ -51,7 +51,7 @@ jobs:
5151
- name: Build and publish the cozy-stack image
5252
run: scripts/docker/production/release.sh
5353
publish_cozy-app-dev_image:
54-
runs-on: ubuntu-22.04
54+
runs-on: ubuntu-24.04
5555
needs: create_release
5656
steps:
5757
- name: Checkout code

.github/workflows/system-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- 'docs/**'
1111
jobs:
1212
system:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
services:
1515
mailhog:
1616
image: mailhog/mailhog

scripts/onlyoffice-dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Taken from https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/Dockerfile
22

3-
FROM ubuntu:22.04
3+
FROM ubuntu:24.04
44

55
ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 \
66
DEBIAN_FRONTEND=noninteractive \

0 commit comments

Comments
 (0)