Skip to content

Commit e5497ab

Browse files
committed
ci: Auto update Github Action workflows
1 parent 37909ba commit e5497ab

File tree

4 files changed

+21
-19
lines changed

4 files changed

+21
-19
lines changed

.github/workflows/platform-ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# v3.800.11
2-
# bump-ubuntu-version
1+
# v3.800.12
2+
# https://virtocommerce.atlassian.net/browse/VCST-2469
33
name: Platform CI
44

55
on:
@@ -296,7 +296,7 @@ jobs:
296296
needs: 'ci'
297297
if: ${{ ((github.ref == 'refs/heads/dev') && (github.event_name == 'push') && (needs.ci.outputs.run-e2e == 'true')) ||
298298
(github.event_name == 'workflow_dispatch') || (github.base_ref == 'dev') && (github.event_name == 'pull_request') }}
299-
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.800.11
299+
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.800.12
300300
with:
301301
katalonRepo: 'VirtoCommerce/vc-quality-gate-katalon'
302302
katalonRepoBranch: 'dev'
@@ -313,7 +313,7 @@ jobs:
313313
deploy-cloud:
314314
if: ${{ (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev') && github.event_name == 'push' }}
315315
needs: ci
316-
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.800.11
316+
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.800.12
317317
with:
318318
releaseSource: platform
319319
platformVer: ${{ needs.ci.outputs.version }}
@@ -330,7 +330,7 @@ jobs:
330330
- deploy-cloud
331331
steps:
332332
- name: OWASP ZAP Full Scan
333-
uses: zaproxy/action-baseline@v0.12.0
333+
uses: zaproxy/action-baseline@v0.14.0
334334
with:
335335
token: ${{ secrets.REPO_TOKEN }}
336336
target: 'https://vcptcore-dev.govirto.com'

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# v3.800.11
2-
# bump-ubuntu-version
1+
# v3.800.12
2+
# https://virtocommerce.atlassian.net/browse/VCST-2469
33
name: Release hotfix
44

55
on:
@@ -13,12 +13,12 @@ on:
1313

1414
jobs:
1515
test:
16-
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.800.11
16+
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.800.12
1717
secrets:
1818
sonarToken: ${{ secrets.SONAR_TOKEN }}
1919

2020
build:
21-
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.800.11
21+
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.800.12
2222
with:
2323
uploadPackage: 'true'
2424
uploadDocker: 'true'
@@ -47,7 +47,7 @@ jobs:
4747
publish-docker:
4848
needs:
4949
[build, get-metadata]
50-
uses: VirtoCommerce/.github/.github/workflows/publish-docker.yml@v3.800.11
50+
uses: VirtoCommerce/.github/.github/workflows/publish-docker.yml@v3.800.12
5151
with:
5252
fullKey: ${{ needs.build.outputs.dockerFullKey }}
5353
shortKey: '${{ needs.build.outputs.dockerShortKey }}-'
@@ -61,7 +61,7 @@ jobs:
6161
publish-github-release:
6262
needs:
6363
[build, test, get-metadata]
64-
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.800.11
64+
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.800.12
6565
with:
6666
fullKey: ${{ needs.build.outputs.packageFullKey }}
6767
changeLog: '${{ needs.get-metadata.outputs.changeLog }}'

.github/workflows/publish-nugets.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# v3.800.11
2-
# bump-ubuntu-version
1+
# v3.800.12
2+
# https://virtocommerce.atlassian.net/browse/VCST-2469
33
name: Publish nuget
44

55
on:
@@ -13,12 +13,12 @@ on:
1313

1414
jobs:
1515
test:
16-
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.800.11
16+
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.800.12
1717
secrets:
1818
sonarToken: ${{ secrets.SONAR_TOKEN }}
1919

2020
build:
21-
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.800.11
21+
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.800.12
2222
with:
2323
uploadPackage: 'true'
2424
uploadDocker: 'false'
@@ -29,10 +29,12 @@ jobs:
2929
publish-nuget:
3030
needs:
3131
[build, test]
32-
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.800.11
32+
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.800.12
3333
with:
3434
fullKey: ${{ needs.build.outputs.packageFullKey }}
3535
forceGithub: false
36+
forceBlob: true
3637
secrets:
3738
envPAT: ${{ secrets.GITHUB_TOKEN }}
3839
nugetKey: ${{ secrets.NUGET_KEY }}
40+
BLOB_SAS: ${{ secrets.BLOB_TOKEN }}

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# v3.800.11
2-
# bump-ubuntu-version
1+
# v3.800.12
2+
# https://virtocommerce.atlassian.net/browse/VCST-2469
33
name: Release
44

55
on:
66
workflow_dispatch:
77

88
jobs:
99
release:
10-
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.800.11
10+
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.800.12
1111
secrets:
1212
envPAT: ${{ secrets.REPO_TOKEN }}

0 commit comments

Comments
 (0)