Skip to content

Commit 6dddfe6

Browse files
fix: ⬆️ Upgrade to Probot 14 (#1105)
1 parent d45e8bf commit 6dddfe6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+10156
-6274
lines changed

.github/workflows/app-stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
log:
99
runs-on: ubuntu-latest
1010
steps:
11-
- name: 'Checkout sources'
12-
uses: actions/checkout@v4
11+
- name: Checkout sources
12+
uses: actions/checkout@v5
1313

14-
- name: 'Collect stats'
14+
- name: Collect stats
1515
uses: gr2m/app-stats-action@v1.x
1616
id: stats
1717
with:

.github/workflows/codelimit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'codelimit'
1+
name: codelimit
22

33
on:
44
push:
@@ -12,9 +12,9 @@ jobs:
1212
ci:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: 'Checkout sources'
16-
uses: actions/checkout@v4
15+
- name: Checkout sources
16+
uses: actions/checkout@v5
1717

18-
- name: 'Run CodeLimit'
18+
- name: Run CodeLimit
1919
uses: getcodelimit/codelimit-action@v1
2020

.github/workflows/main.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'main'
1+
name: main
22
concurrency: main_environment
33

44
on:
@@ -15,42 +15,42 @@ jobs:
1515
env:
1616
CI: true
1717
steps:
18-
- name: 'Checkout sources'
19-
uses: actions/checkout@v4
18+
- name: Checkout sources
19+
uses: actions/checkout@v5
2020

21-
- name: 'Setup NodeJS'
21+
- name: Setup NodeJS
2222
uses: actions/setup-node@v4
2323
with:
24-
node-version: '20.x'
24+
node-version: '22.x'
2525

26-
- name: 'Install dependencies'
27-
run: yarn install
26+
- name: Install dependencies
27+
run: npm install
2828

29-
- name: 'Build distribution'
30-
run: yarn action:dist
29+
- name: Build distribution
30+
run: npm run action:dist
3131

32-
- name: 'Run unit-tests'
33-
run: yarn test
32+
- name: Run unit-tests
33+
run: npm test
3434

35-
- name: 'Run code coverage'
36-
run: yarn run coverage
35+
- name: Run code coverage
36+
run: npm run coverage
3737

3838
- name: 'Upload code coverage report'
3939
run: bash <(curl -s https://codecov.io/bash) -t ${{secrets.CODECOV_SECRET_TOKEN }}
4040

41-
- name: 'Build action dist'
42-
run: yarn action:dist
41+
- name: Build action dist
42+
run: npm run action:dist
4343

44-
- name: 'Build action docker image'
44+
- name: Build action docker image
4545
run: docker build -f Dockerfile-action -t cib-action .
4646

47-
- name: 'Build server dist'
48-
run: yarn server:dist
47+
- name: Build server dist
48+
run: npm run server:dist
4949

50-
- name: 'Build server docker image'
50+
- name: Build server docker image
5151
run: docker build -t cib .
5252

53-
- name: 'Configure AWS credentials'
53+
- name: Configure AWS credentials
5454
if: ${{ github.actor != 'dependabot[bot]' }}
5555
uses: aws-actions/configure-aws-credentials@v4
5656
with:

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@ jobs:
99
permissions:
1010
contents: write
1111
steps:
12-
- name: 'Checkout sources'
13-
uses: actions/checkout@v4
12+
- name: Checkout sources
13+
uses: actions/checkout@v5
1414

15-
- name: 'Setup NodeJS'
15+
- name: Setup NodeJS
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: '20.x'
18+
node-version: '22.x'
1919

20-
- name: 'Install dependencies'
21-
run: yarn install
20+
- name: Install dependencies
21+
run: npm install
2222

23-
- name: 'Run unit-tests'
24-
run: yarn test
23+
- name: Run unit-tests
24+
run: npm test
2525

26-
- name: 'Build GitHub Actions distribution'
27-
run: yarn action:dist
26+
- name: Build GitHub Actions distribution
27+
run: npm run action:dist
2828

29-
- name: 'Commit GitHub Actions distribution'
29+
- name: Commit GitHub Actions distribution
3030
uses: stefanzweifel/git-auto-commit-action@v5
3131
with:
3232
commit_message: Build by GitHub Actions
3333
file_pattern: action-dist/index.js
3434

35-
- name: 'Semantic Release'
35+
- name: Semantic Release
3636
env:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
run: npx semantic-release

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -813,11 +813,11 @@ Please note that once your repository is linked with your CodeCov account you wi
813813
generated by CodeCov which you will have to save as `CODECOV_SECRET_TOKEN` in your GitHub secrets for this repository.
814814
The bash script upon execution will provide a link to your CodeCov dashboard on your account.
815815

816-
The snippet below shows the workflow which runs the coverage command through yarn and bash script to generate a
817-
dashboard on CodeCov.io:
816+
The snippet below shows the workflow which runs the coverage command through
817+
npm and bash script to generate a dashboard on CodeCov.io:
818818

819819
```yaml
820-
- run: yarn run coverage
820+
- run: npm run coverage
821821
- run: bash <(curl -s https://codecov.io/bash) -t ${{secrets.CODECOV_SECRET_TOKEN }}
822822
```
823823

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ outputs:
77
branchName:
88
description: 'Name of the branch that was created'
99
runs:
10-
using: 'node20'
10+
using: 'node24'
1111
main: 'action-dist/index.js'

next-env.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
6+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
File renamed without changes.

0 commit comments

Comments
 (0)