Skip to content

Commit

Permalink
ci: Auto update Github Action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
vc-ci committed Mar 3, 2023
1 parent dee745c commit 3d49f0d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/module-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v3.200.22
# v3.200.24
name: Module CI

on:
Expand Down Expand Up @@ -56,10 +56,10 @@ jobs:

steps:

- name: Set up Node 16
- name: Set up Node 18
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'

- name: Set RELEASE_STATUS
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }}
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
if: ${{ ((github.ref == 'refs/heads/dev') && (github.event_name == 'push') && (needs.ci.outputs.run-e2e == 'true')) ||
(github.event_name == 'workflow_dispatch')}}
needs: 'ci'
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/e2e.yml@v3.200.24
with:
katalonRepo: 'VirtoCommerce/vc-quality-gate-katalon'
katalonRepoBranch: 'dev'
Expand All @@ -259,7 +259,7 @@ jobs:
(github.ref == 'refs/heads/dev')) &&
github.event_name == 'push' }}
needs: ci
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/deploy-cloud.yml@v3.200.24
with:
releaseSource: module
moduleId: ${{ needs.ci.outputs.moduleId }}
Expand All @@ -268,4 +268,4 @@ jobs:
jiraKeys: ${{ needs.ci.outputs.jira-keys }}
argoServer: 'argo.virtocommerce.cloud'
matrix: '{"include":${{ needs.ci.outputs.matrix }}}'
secrets: inherit
secrets: inherit
8 changes: 4 additions & 4 deletions .github/workflows/module-release-hotfix.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v3.200.22
# v3.200.24
name: Release hotfix

on:
Expand All @@ -12,12 +12,12 @@ on:

jobs:
test:
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.24
secrets:
sonarToken: ${{ secrets.SONAR_TOKEN }}

build:
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.24
with:
uploadPackage: 'true'
uploadDocker: 'false'
Expand All @@ -43,7 +43,7 @@ jobs:
publish-github-release:
needs:
[build, test, get-metadata]
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.24
with:
fullKey: ${{ needs.build.outputs.packageFullKey }}
changeLog: '${{ needs.get-metadata.outputs.changeLog }}'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-nugets.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v3.200.22
# v3.200.24
name: Publish nuget

on:
Expand All @@ -12,12 +12,12 @@ on:

jobs:
test:
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/test-and-sonar.yml@v3.200.24
secrets:
sonarToken: ${{ secrets.SONAR_TOKEN }}

build:
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/build.yml@v3.200.24
with:
uploadPackage: 'true'
uploadDocker: 'false'
Expand All @@ -28,7 +28,7 @@ jobs:
publish-nuget:
needs:
[build, test]
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/publish-github.yml@v3.200.24
with:
fullKey: ${{ needs.build.outputs.packageFullKey }}
forceGithub: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# v3.200.22
# v3.200.24
name: Release

on:
workflow_dispatch:

jobs:
release:
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.200.22
uses: VirtoCommerce/.github/.github/workflows/release.yml@v3.200.24
secrets:
envPAT: ${{ secrets.REPO_TOKEN }}

0 comments on commit 3d49f0d

Please sign in to comment.