Skip to content

Commit e25e6dd

Browse files
committed
chore: merge current main
2 parents ee66a09 + 1cae35a commit e25e6dd

9 files changed

Lines changed: 11032 additions & 8003 deletions

File tree

.github/workflows/on-pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout sources 🔰
10-
uses: actions/checkout@v5
10+
uses: actions/checkout@v6
1111
with:
1212
fetch-depth: 0
1313

@@ -23,7 +23,7 @@ jobs:
2323
node-version: 24
2424

2525
- name: Cache Node.js modules 💾
26-
uses: actions/cache@v4
26+
uses: actions/cache@v5
2727
with:
2828
path: ~/.npm
2929
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/on-push-main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout sources 🔰
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Setup Node.js 🧮
1919
uses: actions/setup-node@v6
2020
with:
2121
node-version: 24
2222

2323
- name: Cache Node.js modules 💾
24-
uses: actions/cache@v4
24+
uses: actions/cache@v5
2525
with:
2626
path: ~/.npm
2727
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -36,7 +36,7 @@ jobs:
3636
run: npm run build
3737

3838
- name: Deploy (to latest) 🚀
39-
uses: JamesIves/github-pages-deploy-action@v4.7.4
39+
uses: JamesIves/github-pages-deploy-action@v4.8.0
4040
with:
4141
token: ${{ secrets.GITHUB_TOKEN }}
4242
branch: gh-pages
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: Checkout sources 🔰
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585
with:
8686
# Disabling shallow clone is recommended for improving relevancy of reporting
8787
fetch-depth: 0
@@ -92,7 +92,7 @@ jobs:
9292
node-version: 24
9393

9494
- name: Cache Node.js modules 💾
95-
uses: actions/cache@v4
95+
uses: actions/cache@v5
9696
with:
9797
path: ~/.npm
9898
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -113,7 +113,7 @@ jobs:
113113
echo "sonar.projectVersion=$(git describe --tags --abbrev=0 | sed 's/^v//')" >> ./sonar-project.properties
114114
115115
- name: SonarQube Scan 🔬
116-
uses: SonarSource/sonarqube-scan-action@v6.0.0
116+
uses: SonarSource/sonarqube-scan-action@v7.0.0
117117
with:
118118
projectBaseDir: .
119119
env:

.github/workflows/on-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout sources 🔰
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313

1414
- name: Setup Node.js 🧮
1515
uses: actions/setup-node@v6
1616
with:
1717
node-version: 24
1818

1919
- name: Cache Node.js modules 💾
20-
uses: actions/cache@v4
20+
uses: actions/cache@v5
2121
with:
2222
path: ~/.npm
2323
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -36,7 +36,7 @@ jobs:
3636
echo "VERSION=$(node -pe "require('./package.json').version")" >> $GITHUB_ENV
3737
3838
- name: Deploy (to v${{ env.VERSION }}) 🚀
39-
uses: JamesIves/github-pages-deploy-action@v4.7.4
39+
uses: JamesIves/github-pages-deploy-action@v4.8.0
4040
with:
4141
token: ${{ secrets.GITHUB_TOKEN }}
4242
branch: gh-pages

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
new_release_version: ${{ steps.semantic.outputs.new_release_version }}
1616
steps:
1717
- name: Checkout 🔰
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Setup Node.js 🧮
2121
uses: actions/setup-node@v6

.github/workflows/release_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout sources 🔰
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
ref: v${{ inputs.release_version }}
3030

.github/workflows/update_base_images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
remaining_tags: ${{ steps.set-tags.outputs.remaining_tags }}
1414
steps:
1515
- name: Checkout sources 🔰
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

Dockerfile.e2e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/playwright:v1.56.1-jammy
1+
FROM mcr.microsoft.com/playwright:v1.58.0-jammy
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)