Skip to content

chore: update dependencies and fix type issue in useConfigValue hook #920

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

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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need to update this file ?

- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18'
- run: npm ci
Expand All @@ -23,4 +23,4 @@ jobs:
#- run: npm run test:unit
#- run: npm run test-server &
#- run: npm run test
- run: npx next@14 build --experimental-build-mode compile
- run: npx next@14.2 build --experimental-build-mode compile
32 changes: 19 additions & 13 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,29 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push stable version to Docker Hub
if: "!github.event.release.prerelease"
uses: docker/build-push-action@v1
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.CADENCE_WEB_DOCKERHUB_USERNAME }}
password: ${{ secrets.CADENCE_WEB_DOCKERHUB_TOKEN }}
repository: ubercadence/web
tag_with_ref: true
tags: latest
- name: Push stable version to Docker Hub
if: "!github.event.release.prerelease"
uses: docker/build-push-action@v5
with:
push: true
context: .
tags: |
ubercadence/web:latest
ubercadence/web:${{ github.event.release.tag_name }}

- name: Push beta version to Docker Hub
if: github.event.release.prerelease
uses: docker/build-push-action@v1
uses: docker/build-push-action@v5
with:
username: ${{ secrets.CADENCE_WEB_DOCKERHUB_USERNAME }}
password: ${{ secrets.CADENCE_WEB_DOCKERHUB_TOKEN }}
repository: ubercadence/web
tag_with_ref: true
tags: beta
push: true
context: .
tags: |
ubercadence/web:${{ github.event.release.tag_name }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine AS base
FROM node:18.20-alpine AS base

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't node:18-alpine use the latest by default?

RUN apk update
RUN apk --no-cache add git
Expand Down
Loading
Loading