Skip to content

Commit

Permalink
chore(actions): upgrade actions to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
timoknapp committed Aug 13, 2024
1 parent 8cc526f commit f6cbf4d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,40 +13,40 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
uses: actions/setup-go@v2
with:
go-version: "1.19" # The Go version to download (if necessary) and use.
go-version: "1.22" # The Go version to download (if necessary) and use.
- run: go version
- run: make build-linux
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: sc-linux
path: sc-linux
- run: make build-mac
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: sc-mac
path: sc-mac
- run: make build-mac-arm
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: sc-mac-arm
path: sc-mac-arm
- run: make build-windows
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: sc-win
path: sc-win.exe
- run: make build-linux-arm
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: sc-rpi
path: sc-rpi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: echo "1.0.0+1" > .version # this file seems to be required for the dry-mode

Expand Down

0 comments on commit f6cbf4d

Please sign in to comment.