Skip to content

Commit 253954e

Browse files
committed
Merge branch 'release/3.210.0'
2 parents 04f2300 + 913a22d commit 253954e

File tree

7 files changed

+129
-156
lines changed

7 files changed

+129
-156
lines changed

.github/workflows/module-ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v3.200.20
1+
# v3.200.22
22
name: Module CI
33

44
on:
@@ -56,6 +56,11 @@ jobs:
5656

5757
steps:
5858

59+
- name: Set up Node 16
60+
uses: actions/setup-node@v2
61+
with:
62+
node-version: '16'
63+
5964
- name: Set RELEASE_STATUS
6065
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }}
6166
run: |
@@ -234,7 +239,7 @@ jobs:
234239
if: ${{ ((github.ref == 'refs/heads/dev') && (github.event_name == 'push') && (needs.ci.outputs.run-e2e == 'true')) ||
235240
(github.event_name == 'workflow_dispatch')}}
236241
needs: 'ci'
237-
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.200.20
242+
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.200.22
238243
with:
239244
katalonRepo: 'VirtoCommerce/vc-quality-gate-katalon'
240245
katalonRepoBranch: 'dev'
@@ -254,7 +259,7 @@ jobs:
254259
(github.ref == 'refs/heads/dev')) &&
255260
github.event_name == 'push' }}
256261
needs: ci
257-
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.200.20
262+
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.200.22
258263
with:
259264
releaseSource: module
260265
moduleId: ${{ needs.ci.outputs.moduleId }}

.github/workflows/module-release-hotfix.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v3.200.20
1+
# v3.200.22
22
name: Release hotfix
33

44
on:
@@ -12,12 +12,12 @@ on:
1212

1313
jobs:
1414
test:
15-
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.20
15+
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.22
1616
secrets:
1717
sonarToken: ${{ secrets.SONAR_TOKEN }}
1818

1919
build:
20-
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.20
20+
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.22
2121
with:
2222
uploadPackage: 'true'
2323
uploadDocker: 'false'
@@ -43,7 +43,7 @@ jobs:
4343
publish-github-release:
4444
needs:
4545
[build, test, get-metadata]
46-
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.20
46+
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.22
4747
with:
4848
fullKey: ${{ needs.build.outputs.packageFullKey }}
4949
changeLog: '${{ needs.get-metadata.outputs.changeLog }}'

.github/workflows/publish-nugets.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v3.200.20
1+
# v3.200.22
22
name: Publish nuget
33

44
on:
@@ -12,12 +12,12 @@ on:
1212

1313
jobs:
1414
test:
15-
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.20
15+
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.22
1616
secrets:
1717
sonarToken: ${{ secrets.SONAR_TOKEN }}
1818

1919
build:
20-
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.20
20+
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.22
2121
with:
2222
uploadPackage: 'true'
2323
uploadDocker: 'false'
@@ -28,7 +28,7 @@ jobs:
2828
publish-nuget:
2929
needs:
3030
[build, test]
31-
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.20
31+
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.22
3232
with:
3333
fullKey: ${{ needs.build.outputs.packageFullKey }}
3434
forceGithub: false

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# v3.200.20
1+
# v3.200.22
22
name: Release
33

44
on:
55
workflow_dispatch:
66

77
jobs:
88
release:
9-
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.200.20
9+
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.200.22
1010
secrets:
1111
envPAT: ${{ secrets.REPO_TOKEN }}

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?><Project>
22
<!-- These properties will be shared for all projects -->
33
<PropertyGroup>
4-
<VersionPrefix>3.209.0</VersionPrefix>
4+
<VersionPrefix>3.210.0</VersionPrefix>
55
<VersionSuffix>
66
</VersionSuffix>
77
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>

0 commit comments

Comments
 (0)