Skip to content

Commit 9591ba5

Browse files
authored
bulp
1 parent 8144647 commit 9591ba5

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/nodejs.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@ on: [push]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/checkout@master
1010
- uses: actions/setup-node@master
1111
with:
12-
node-version: 20.x
12+
node-version: 22.x
1313
- run: npm i
1414
- run: npx hexo g
1515
- uses: actions/upload-artifact@master
1616
with:
1717
path: public
1818
name: public
1919
deploy-firebase:
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-24.04
2121
needs: build
2222
if: github.ref == 'refs/heads/master'
2323
steps:
2424
- uses: actions/checkout@master
2525
- uses: actions/setup-node@master
2626
with:
27-
node-version: 20.x
27+
node-version: 22.x
2828
- uses: actions/download-artifact@master
2929
with:
3030
name: public
@@ -36,7 +36,7 @@ jobs:
3636
firebase deploy --token ${{ secrets.FIREBASE_TOKEN }}
3737
3838
deploy-ovh:
39-
runs-on: ubuntu-22.04
39+
runs-on: ubuntu-24.04
4040
needs: build
4141
if: github.ref == 'refs/heads/master'
4242
steps:
@@ -53,7 +53,7 @@ jobs:
5353
find . -type f -exec curl --user xntprja:${{ secrets.FTP_PASSWORD }} --ftp-create-dirs -v -T {} ftp://ftp.cluster014.hosting.ovh.net:21/www/{} \;
5454
5555
deploy-github:
56-
runs-on: ubuntu-22.04
56+
runs-on: ubuntu-24.04
5757
needs: build
5858
if: github.ref == 'refs/heads/master'
5959
steps:

.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: node:20
1+
image: node:22
22

33
pages:
44
script:

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "tpi.eu",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"private": true,
55
"hexo": {
6-
"version": "7.2.0"
6+
"version": "7.3.0"
77
},
88
"dependencies": {
99
"hexo": "7.3.0",
@@ -25,7 +25,7 @@
2525
"markdownlint": "^0.34.0"
2626
},
2727
"engines": {
28-
"node": ">= 18"
28+
"node": ">= 22"
2929
},
3030
"scripts": {
3131
"build": "hexo g && cp assets/indexing-on.txt public/robots.txt && cp public/assets/404.html public/404.html",

0 commit comments

Comments
 (0)