Skip to content

Commit

Permalink
update version (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
arperyanori authored May 21, 2024
1 parent d1734e3 commit dcf0317
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: docker build -t ${{ github.repository }}:${{ github.sha }} ${{ inputs.buildContext }}

- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.14.0
uses: aquasecurity/trivy-action@0.17.0
with:
image-ref: "${{ github.repository }}:${{ github.sha }}"
format: "table"
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/gcp-helm-charts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,22 @@ jobs:
with:
fetch-depth: 0

- name: Install Helm
uses: azure/setup-helm@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Helm tool installer
uses: Azure/[email protected]

- name: Package Helm Chart
run: helm package ./charts/* --destination ./charts

- name: Authorize with GCP
uses: google-github-actions/auth@v1
- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2.1.3
with:
credentials_json: ${{ secrets.GCP_CREDENTIALS }}

- name: Push chart to GCP Cloud Storage
uses: google-github-actions/upload-cloud-storage@v1
uses: google-github-actions/upload-cloud-storage@v2.1.0
with:
path: ./charts
glob: "*.tgz"
process_gcloudignore: false
destination: ${{ inputs.gcpDestination }}
parent: false
6 changes: 3 additions & 3 deletions .github/workflows/go-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ jobs:
fetch-depth: 0
- name: Download build artifact
if: ${{ ! inputs.skip && inputs.buildArtifactName }}
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: ${{ inputs.buildArtifactName }}
path: ${{ inputs.buildArtifactName }}/
- name: Setup Go
if: ${{ ! inputs.skip }}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.goVersion }}
go-version: ${{ inputs.goVersion }}
cache-dependency-path: go.sum
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ jobs:
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.goVersion }}
go-version: ${{ inputs.goVersion }}
cache-dependency-path: go.sum
- name: Unit Test
run: bash -c "${{ inputs.unitTestCommand }}"
- name: Upload Coverage Report
if: ${{ inputs.uploadToCodecov }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4.4.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ inputs.coverageFilePath }}
Expand Down

0 comments on commit dcf0317

Please sign in to comment.