File tree Expand file tree Collapse file tree 9 files changed +762
-986
lines changed
Expand file tree Collapse file tree 9 files changed +762
-986
lines changed Original file line number Diff line number Diff line change 33 # Enable version updates for npm
44 - package-ecosystem : " npm"
55 directory : " /"
6+ target-branch : " develop"
67 schedule :
78 interval : " weekly"
89 day : " monday"
@@ -16,6 +17,7 @@ updates:
1617 # Enable version updates for GitHub Actions
1718 - package-ecosystem : " github-actions"
1819 directory : " /"
20+ target-branch : " develop"
1921 schedule :
2022 interval : " weekly"
2123 day : " monday"
@@ -28,6 +30,7 @@ updates:
2830 # Enable version updates for Docker
2931 - package-ecosystem : " docker"
3032 directory : " /"
33+ target-branch : " develop"
3134 schedule :
3235 interval : " weekly"
3336 day : " monday"
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ jobs:
1212 timeout-minutes : 10
1313
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v5
1616
1717 - name : Install Node
18- uses : actions/setup-node@v4
18+ uses : actions/setup-node@v5
1919 with :
2020 node-version : 20.x
2121
2222 - name : Cache node modules
23- uses : actions/cache@v3
23+ uses : actions/cache@v4
2424 with :
2525 path : ~/.npm
2626 key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Original file line number Diff line number Diff line change 1414 packages : write
1515 steps :
1616 - name : Checkout
17- uses : actions/checkout@v4
17+ uses : actions/checkout@v5
1818
1919 - name : Docker meta
2020 id : meta
3737
3838 - name : Build and push
3939 id : docker_build
40- uses : docker/build-push-action@v5
40+ uses : docker/build-push-action@v6
4141 with :
4242 platforms : linux/amd64,linux/arm64
4343 push : true
Original file line number Diff line number Diff line change 1414 packages : write
1515 steps :
1616 - name : Checkout
17- uses : actions/checkout@v4
17+ uses : actions/checkout@v5
1818
1919 - name : Docker meta
2020 id : meta
3737
3838 - name : Build and push
3939 id : docker_build
40- uses : docker/build-push-action@v5
40+ uses : docker/build-push-action@v6
4141 with :
4242 platforms : linux/amd64,linux/arm64
4343 push : true
Original file line number Diff line number Diff line change 1414 packages : write
1515 steps :
1616 - name : Checkout
17- uses : actions/checkout@v4
17+ uses : actions/checkout@v5
1818
1919 - name : Docker meta
2020 id : meta
3737
3838 - name : Build and push
3939 id : docker_build
40- uses : docker/build-push-action@v5
40+ uses : docker/build-push-action@v6
4141 with :
4242 platforms : linux/amd64,linux/arm64
4343 push : true
Original file line number Diff line number Diff line change 2525
2626 steps :
2727 - name : Checkout repository
28- uses : actions/checkout@v4
28+ uses : actions/checkout@v5
2929
3030 - name : Initialize CodeQL
3131 uses : github/codeql-action/init@v3
4646 if : github.event_name == 'pull_request'
4747 steps :
4848 - name : Checkout Repository
49- uses : actions/checkout@v4
49+ uses : actions/checkout@v5
5050 - name : Dependency Review
5151 uses : actions/dependency-review-action@v4
Original file line number Diff line number Diff line change 1- FROM node:20 -alpine AS builder
1+ FROM node:24 -alpine AS builder
22
33RUN apk update && \
44 apk add --no-cache git ffmpeg wget curl bash openssl
@@ -30,7 +30,7 @@ RUN ./Docker/scripts/generate_database.sh
3030
3131RUN npm run build
3232
33- FROM node:20 -alpine AS final
33+ FROM node:24 -alpine AS final
3434
3535RUN apk update && \
3636 apk add tzdata ffmpeg bash openssl
You can’t perform that action at this time.
0 commit comments