Skip to content

Commit

Permalink
⚙️ bump github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jfcg committed Jan 19, 2024
1 parent 7d144fd commit c308835
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions .github/workflows/QA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,38 +18,34 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
go: [ '1.19', '1.20' ]
go: [ oldstable, stable ]
runs-on: ${{ matrix.os }}

steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -timeout 1h -v
run: go test -timeout 5m -v

Analysis:
needs: Tests
permissions:
actions: read
security-events: write
strategy:
matrix:
go: [ '1.19', '1.20' ]
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
go-version: stable
- name: Initialize
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: go
- name: Analyze
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3

0 comments on commit c308835

Please sign in to comment.