Skip to content

Commit

Permalink
Updating checkout and setup-go versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
armfazh committed Oct 14, 2024
1 parent 634882c commit 326b394
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
matrix:
GOVER: ['1.21', '1.20']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go-${{ matrix.GOVER }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.GOVER }}
- name: Checkout
uses: actions/checkout@v3
- name: Building
run: go build -v ./...
- name: Testing
Expand All @@ -31,7 +31,7 @@ jobs:
matrix:
CFG: [[arm64, arm64v8, 1.21]]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Enabling Docker Experimental
run: |
echo $'{\n "experimental": true\n}' | sudo tee /etc/docker/daemon.json
Expand All @@ -49,12 +49,12 @@ jobs:
name: Running on ${{ matrix.os }}
strategy:
matrix:
os: [macos-11, windows-2019]
os: [macos-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Building
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ on:
workflow_dispatch: {}
push:
branches:
- main
- master
schedule:
- cron: '0 0 * * *'
name: Semgrep config
name: Semgrep
jobs:
semgrep:
name: semgrep/ci
Expand All @@ -21,4 +20,4 @@ jobs:
image: semgrep/semgrep
steps:
- uses: actions/checkout@v4
- run: semgrep ci
- run: semgrep ci --verbose

0 comments on commit 326b394

Please sign in to comment.