Skip to content

Commit

Permalink
chore(deps): update dependency ubuntu to v24
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 27, 2024
1 parent cfc9805 commit 5cfdfe9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
build-console:
name: build-frontend
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
NEXT_PUBLIC_API_URL: /api/
steps:
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
# only run if not a tags build
if: startsWith(github.ref, 'refs/tags/') == false
needs: build-release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/download-artifact@v4
- name: Display structure of downloaded files
Expand All @@ -307,7 +307,7 @@ jobs:

deploy-docker:
needs: build-release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 as base
FROM ubuntu:24.04 as base
ARG TARGETPLATFORM
COPY . /tmp
WORKDIR /tmp
Expand All @@ -18,7 +18,7 @@ RUN case $TARGETPLATFORM in \
chmod +x /convert_record_cli; \
chmod +x /convert_record_worker

FROM ubuntu:22.04
FROM ubuntu:24.04

# install wget & curl
RUN apt update && apt install -y wget curl && apt clean && rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 5cfdfe9

Please sign in to comment.