Skip to content

Commit 64dfff3

Browse files
committed
Merge remote-tracking branch 'upstream/alpha' into alpha
2 parents 926d034 + 5000c2a commit 64dfff3

File tree

5 files changed

+48
-18
lines changed

5 files changed

+48
-18
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,8 +289,10 @@ jobs:
289289
- name: Upload code coverage
290290
uses: codecov/codecov-action@v4
291291
with:
292-
fail_ci_if_error: true
292+
fail_ci_if_error: false
293293
token: ${{ secrets.CODECOV_TOKEN }}
294+
env:
295+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
294296
concurrency:
295297
group: ${{ github.workflow }}-${{ github.ref }}
296298
cancel-in-progress: true

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
############################################################
22
# Build stage
33
############################################################
4-
FROM node:lts-alpine AS build
4+
FROM node:20.14.0-alpine3.20 AS build
55

66
RUN apk --no-cache add \
77
build-base \
@@ -28,7 +28,7 @@ RUN npm ci --omit=dev --ignore-scripts \
2828
############################################################
2929
# Release stage
3030
############################################################
31-
FROM node:lts-alpine AS release
31+
FROM node:20.14.0-alpine3.20 AS release
3232

3333
VOLUME /parse-server/cloud /parse-server/config
3434

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build Status](https://github.com/parse-community/parse-server/workflows/ci/badge.svg?branch=beta)](https://github.com/parse-community/parse-server/actions?query=workflow%3Aci+branch%3Abeta)
77
[![Build Status](https://github.com/parse-community/parse-server/workflows/ci/badge.svg?branch=release)](https://github.com/parse-community/parse-server/actions?query=workflow%3Aci+branch%3Arelease)
88
[![Snyk Badge](https://snyk.io/test/github/parse-community/parse-server/badge.svg)](https://snyk.io/test/github/parse-community/parse-server)
9-
[![Coverage](https://img.shields.io/codecov/c/github/parse-community/parse-server/alpha.svg)](https://codecov.io/github/parse-community/parse-server?branch=alpha)
9+
[![Coverage](https://codecov.io/github/parse-community/parse-server/branch/alpha/graph/badge.svg)](https://app.codecov.io/github/parse-community/parse-server/tree/alpha)
1010
[![auto-release](https://img.shields.io/badge/%F0%9F%9A%80-auto--release-9e34eb.svg)](https://github.com/parse-community/parse-dashboard/releases)
1111

1212
[![Node Version](https://img.shields.io/badge/nodejs-18,_20-green.svg?logo=node.js&style=flat)](https://nodejs.org)

package-lock.json

Lines changed: 41 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"uuid": "9.0.1",
6363
"winston": "3.12.0",
6464
"winston-daily-rotate-file": "5.0.0",
65-
"ws": "8.16.0"
65+
"ws": "8.17.1"
6666
},
6767
"devDependencies": {
6868
"@actions/core": "1.10.1",

0 commit comments

Comments
 (0)