Skip to content

Commit

Permalink
upgrade actions
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergodart committed Aug 9, 2024
1 parent 303b519 commit 843c679
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
env:
CGO_ENABLED: 1
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Alsa headers
run: sudo apt-get install libasound2-dev
if: startsWith(matrix.os, 'ubuntu')

- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.22

Expand All @@ -49,7 +49,7 @@ jobs:
if: ${{ !startsWith(matrix.os, 'windows') }}

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sektron_${{ github.sha }}
path: sektron_${{ github.ref_name }}_${{ runner.os}}.tar.gz
Expand All @@ -60,7 +60,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: sektron_${{ github.sha }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
name: checks
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: 1.22
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
args: -c .golangci.yml
only-new-issues: true

0 comments on commit 843c679

Please sign in to comment.