Skip to content

Commit

Permalink
update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chimanjain committed Feb 20, 2024
1 parent 4980a37 commit 059c65c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Run the formatter, linter, and vetter
uses: dell/common-github-actions/go-code-formatter-linter-vetter@main
with:
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Run the forbidden words scan
uses: dell/common-github-actions/code-sanitizer@main
with:
Expand All @@ -43,7 +43,7 @@ jobs:
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Run unit tests and check package coverage
uses: dell/common-github-actions/go-code-tester@main
with:
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Run Go Security
uses: securego/gosec@master
with:
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Run malware scan
uses: dell/common-github-actions/malware-scanner@main
with:
Expand All @@ -86,7 +86,7 @@ jobs:
go-version: ^1.21
id: go
- name: Checkout the code
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: Install Mockgen
run: go get github.com/golang/mock/mockgen@v1.6.0
- name: Get dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version: "1.21"
cache: false
- name: Checkout the code
uses: actions/checkout@v3.2.0
uses: actions/checkout@v5
- name: Vendor packages
run: |
go mod vendor
Expand Down

0 comments on commit 059c65c

Please sign in to comment.