File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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') }}
Original file line number Diff line number Diff 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') }}
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
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
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 :
Original file line number Diff line number Diff line change 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') }}
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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/playwright:v1.56.1 -jammy
1+ FROM mcr.microsoft.com/playwright:v1.58.0 -jammy
22
33WORKDIR /app
44
You can’t perform that action at this time.
0 commit comments