Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency ubuntu to v24 #4391

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'assets/**'
jobs:
build_assets:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'cmd/*.go'
jobs:
build_cli:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
golangci:
name: lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/setup-go@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
redis:
image: redis
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- "*.*.*" # Matching a version number like 1.4.19
jobs:
create_release:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -16,7 +16,7 @@ jobs:
tag_name="${GITHUB_REF##*/}"
gh release create "$tag_name" --target "$GITHUB_SHA" --title "$tag_name" --notes "Release $tag_name"
publish_binaries:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: create_release
steps:
- name: Install Go
Expand All @@ -38,7 +38,7 @@ jobs:
tag_name="${GITHUB_REF##*/}"
gh release upload "$tag_name" cozy-stack-*
publish_cozy-stack_image:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: create_release
steps:
- name: Checkout code
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Build and publish the cozy-stack image
run: scripts/docker/production/release.sh
publish_cozy-app-dev_image:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: create_release
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- 'docs/**'
jobs:
system:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
mailhog:
image: mailhog/mailhog
Expand Down
2 changes: 1 addition & 1 deletion scripts/onlyoffice-dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Taken from https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/Dockerfile

FROM ubuntu:22.04
FROM ubuntu:24.04

ENV LANG=en_US.UTF-8 LANGUAGE=en_US:en LC_ALL=en_US.UTF-8 \
DEBIAN_FRONTEND=noninteractive \
Expand Down
Loading