Skip to content

Commit

Permalink
chore: fix ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
nning committed Sep 16, 2024
1 parent d3bb04f commit fb0c89c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
with:
stable: false
go-version: '1.18'
Expand All @@ -20,6 +20,6 @@ jobs:
- run: make release

- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v2
with:
files: cmd/protonutils/protonutils
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
with:
stable: false
go-version: '1.18'
go-version: 1.23

- name: Lint
run: |
Expand All @@ -42,7 +41,7 @@ jobs:
run: make

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: protonutils
path: cmd/protonutils/protonutils

0 comments on commit fb0c89c

Please sign in to comment.