Skip to content

Commit

Permalink
change trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaysngupta committed Jul 2, 2024
1 parent d634158 commit b8c9562
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/merge-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Go workspace
run: |
Expand All @@ -26,12 +26,12 @@ jobs:
shell: bash

- name: Install Helm
uses: azure/setup-helm@v1
uses: azure/setup-helm@v4.2.0
with:
version: v3.11.0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5.0.1
with:
go-version: '1.19.2'

Expand All @@ -49,20 +49,20 @@ jobs:

- name: Publish test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.3
with:
name: test-results
path: ${{ github.workspace }}/**/report.xml

- name: Publish code coverage results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.3
with:
name: code-coverage
path: coverage.xml

- name: Publish build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.3
with:
name: drop
path: ${{ github.workspace }}/artifact
Expand Down

0 comments on commit b8c9562

Please sign in to comment.