Skip to content

Commit c0660cd

Browse files
deps(CI): Update CI
1 parent 65d0171 commit c0660cd

6 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/actions/be/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: be/init
33
runs:
44
using: composite
55
steps:
6-
- uses: actions/checkout@v6
6+
- uses: actions/checkout@v7
77
with:
88
submodules: true
99

@@ -31,7 +31,7 @@ runs:
3131
working-directory: be
3232
shell: bash
3333
- id: cache-restore
34-
uses: actions/cache/restore@v5
34+
uses: actions/cache/restore@v6
3535
with:
3636
path: ${{ steps.get-composer-cache-dir.outputs.path }}
3737
key: ${{ runner.os }}-composer-${{ hashFiles('be/composer.lock') }}
@@ -51,7 +51,7 @@ runs:
5151

5252
# https://github.com/actions/runner/issues/1478
5353
# https://github.com/actions/setup-node/issues/410#issuecomment-1939482965
54-
- uses: actions/cache/save@v5
54+
- uses: actions/cache/save@v6
5555
if: ${{ steps.cache-restore.outputs.cache-hit != 'true' }}
5656
with:
5757
path: ${{ steps.get-composer-cache-dir.outputs.path }}

.github/actions/c#/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: c#/init
33
runs:
44
using: composite
55
steps:
6-
- uses: actions/checkout@v6
6+
- uses: actions/checkout@v7
77
with:
88
submodules: true
99
- uses: actions/setup-dotnet@v5
@@ -16,7 +16,7 @@ runs:
1616
# to allow saving cache even jobs failed
1717

1818
- id: cache-restore
19-
uses: actions/cache/restore@v5
19+
uses: actions/cache/restore@v6
2020
with:
2121
path: ${{ github.workspace }}/.nuget/packages
2222
key: ${{ runner.os }}-nuget-${{ hashFiles('c#/*/packages.lock.json') }}
@@ -29,7 +29,7 @@ runs:
2929

3030
# https://github.com/actions/runner/issues/1478
3131
# https://github.com/actions/setup-node/issues/410#issuecomment-1939482965
32-
- uses: actions/cache/save@v5
32+
- uses: actions/cache/save@v6
3333
if: ${{ steps.cache-restore.outputs.cache-hit != 'true' }}
3434
with:
3535
path: ${{ github.workspace }}/.nuget/packages

.github/actions/fe/action.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ description: fe/init
33
runs:
44
using: composite
55
steps:
6-
- uses: actions/checkout@v6
6+
- uses: actions/checkout@v7
77
with:
88
submodules: true
99

10-
- uses: actions/setup-node@v6
10+
- uses: actions/setup-node@v7
1111
with: # https://github.com/actions/setup-node/tree/v4
1212
node-version: latest
1313
# cache: yarn
@@ -28,7 +28,7 @@ runs:
2828
working-directory: fe
2929
shell: bash
3030
- id: cache-restore
31-
uses: actions/cache/restore@v5
31+
uses: actions/cache/restore@v6
3232
with:
3333
path: ${{ steps.get-yarn-cache-dir.outputs.path }}
3434
key: ${{ runner.os }}-yarn-${{ hashFiles('fe/yarn.lock') }}
@@ -43,7 +43,7 @@ runs:
4343

4444
# https://github.com/actions/runner/issues/1478
4545
# https://github.com/actions/setup-node/issues/410#issuecomment-1939482965
46-
- uses: actions/cache/save@v5
46+
- uses: actions/cache/save@v6
4747
if: ${{ steps.cache-restore.outputs.cache-hit != 'true' }}
4848
with:
4949
path: ${{ steps.get-yarn-cache-dir.outputs.path }}

.github/workflows/be_base.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
phpunit-infection:
1313
runs-on: ${{ inputs.runs-on }}
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- uses: ./.github/actions/be
1717
- uses: shivammathur/setup-php@v2
1818
with:
@@ -31,7 +31,7 @@ jobs:
3131
--log-junit=coverage/junit.xml
3232
# https://infection.github.io/guide/command-line-options.html#coverage
3333
- if: always() && (steps.phpunit.outcome == 'success' || steps.phpunit.outcome == 'failure')
34-
uses: actions/upload-artifact@v6
34+
uses: actions/upload-artifact@v7
3535
with:
3636
name: coverage-${{ inputs.runs-on }}
3737
path: be/coverage/clover.xml
@@ -42,7 +42,7 @@ jobs:
4242
phan:
4343
runs-on: ${{ inputs.runs-on }}
4444
steps:
45-
- uses: actions/checkout@v6
45+
- uses: actions/checkout@v7
4646
- uses: ./.github/actions/be
4747
- if: runner.os == 'Windows' || runner.os == 'macOS'
4848
uses: shivammathur/setup-php@v2
@@ -60,7 +60,7 @@ jobs:
6060
phpstan:
6161
runs-on: ${{ inputs.runs-on }}
6262
steps:
63-
- uses: actions/checkout@v6
63+
- uses: actions/checkout@v7
6464
- uses: ./.github/actions/be
6565
- run: >
6666
./vendor/bin/phpstan analyze --error-format=checkstyle --no-interaction
@@ -70,7 +70,7 @@ jobs:
7070
psalm:
7171
runs-on: ${{ inputs.runs-on }}
7272
steps:
73-
- uses: actions/checkout@v6
73+
- uses: actions/checkout@v7
7474
- uses: ./.github/actions/be
7575
- run: >
7676
./vendor/bin/psalm --output-format=checkstyle
@@ -80,7 +80,7 @@ jobs:
8080
phpcs:
8181
runs-on: ${{ inputs.runs-on }}
8282
steps:
83-
- uses: actions/checkout@v6
83+
- uses: actions/checkout@v7
8484
- uses: ./.github/actions/be
8585
- id: run
8686
run: ./vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml .
@@ -90,7 +90,7 @@ jobs:
9090
php-cs-fixer:
9191
runs-on: ${{ inputs.runs-on }}
9292
steps:
93-
- uses: actions/checkout@v6
93+
- uses: actions/checkout@v7
9494
- uses: ./.github/actions/be
9595
- run: >
9696
./vendor/bin/php-cs-fixer fix --dry-run --format=checkstyle --no-interaction --show-progress dots
@@ -100,7 +100,7 @@ jobs:
100100
phpmd:
101101
runs-on: ${{ inputs.runs-on }}
102102
steps:
103-
- uses: actions/checkout@v6
103+
- uses: actions/checkout@v7
104104
- uses: ./.github/actions/be
105105
- run: >
106106
./vendor/bin/phpmd . checkstyle phpmd.xml

.github/workflows/c#_base.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
env:
2323
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626
- uses: ./.github/actions/c#
2727
- run: dotnet build --no-restore -c Release ${{ matrix.project }}
2828

@@ -31,11 +31,11 @@ jobs:
3131
env:
3232
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
3333
steps:
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535
- uses: ./.github/actions/c#
3636

3737
- id: cache-restore
38-
uses: actions/cache/restore@v5
38+
uses: actions/cache/restore@v6
3939
with:
4040
path: |
4141
${{ github.workspace }}/.resharper
@@ -52,7 +52,7 @@ jobs:
5252
cachesHome: ${{ github.workspace }}/.resharper
5353

5454
# https://github.com/actions/runner/issues/1478
55-
- uses: actions/cache/save@v5
55+
- uses: actions/cache/save@v6
5656
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
5757
with:
5858
path: |

.github/workflows/fe_base.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ jobs:
1212
tsc:
1313
runs-on: ${{ inputs.runs-on }}
1414
steps:
15-
- uses: actions/checkout@v6
15+
- uses: actions/checkout@v7
1616
- uses: ./.github/actions/fe
1717
- run: yarn run vue-tsc -p .nuxt/tsconfig.app.json
1818

1919
eslint:
2020
runs-on: ${{ inputs.runs-on }}
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- uses: ./.github/actions/fe
2424
- run: yarn run eslint
2525

2626
stylelint:
2727
runs-on: ${{ inputs.runs-on }}
2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
- uses: ./.github/actions/fe
3131

3232
- id: cache-restore
33-
uses: actions/cache/restore@v5
33+
uses: actions/cache/restore@v6
3434
with:
3535
path: ${{ github.workspace }}/fe/.stylelintcache
3636
key: ${{ runner.os }}-fe-stylelintcache
@@ -42,7 +42,7 @@ jobs:
4242
- if: always() && (steps.firstStylelint.outcome == 'success' || steps.firstStylelint.outcome == 'failure')
4343
run: yarn run stylelint --cache --custom-formatter stylelint-actions-formatters '**/*.css'
4444

45-
- uses: actions/cache/save@v5
45+
- uses: actions/cache/save@v6
4646
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
4747
with:
4848
path: ${{ github.workspace }}/fe/.stylelintcache
@@ -51,11 +51,11 @@ jobs:
5151
type-coverage:
5252
runs-on: ${{ inputs.runs-on }}
5353
steps:
54-
- uses: actions/checkout@v6
54+
- uses: actions/checkout@v7
5555
- uses: ./.github/actions/fe
5656

5757
- id: cache-restore
58-
uses: actions/cache/restore@v5
58+
uses: actions/cache/restore@v6
5959
with:
6060
path: ${{ github.workspace }}/fe/.type-coverage
6161
key: ${{ runner.os }}-fe-type-coverage
@@ -64,7 +64,7 @@ jobs:
6464
# https://github.com/plantain-00/type-coverage/issues/145
6565
- run: yarn run type-coverage --show-relative-path --cache --detail --strict --at-least 95
6666

67-
- uses: actions/cache/save@v5
67+
- uses: actions/cache/save@v6
6868
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
6969
with:
7070
path: ${{ github.workspace }}/fe/.type-coverage

0 commit comments

Comments
 (0)