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 ubuntu. #41

Merged
merged 1 commit into from
Feb 12, 2025
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
context:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

outputs:
commit_hash: ${{ steps.context.outputs.commit_hash }}
Expand All @@ -29,7 +29,7 @@ jobs:
release_name: ${{ env.RELEASE_NAME }}

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

needs: context

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
gcp_json_key: ${{ secrets.GCP_JSON_KEY }}

test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build
steps:
- name: Checkout Repo
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
outputs:
context: ${{ steps.context.outputs.context }}

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout Repo
Expand All @@ -129,7 +129,7 @@ jobs:

needs: [context, build, deploy]

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: House Keeping
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN chgrp acait /etc/nginx/nginx.conf && chmod g+w /etc/nginx/nginx.conf

# latest node + ubuntu
FROM node:lts AS node-base
FROM ubuntu:22.04 AS node-bundler
FROM ubuntu:24.04 AS node-bundler
COPY --from=node-base / /

ADD index.html package.json vite.config.js /app/
Expand Down
Loading