Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelGirodon committed Oct 13, 2024
1 parent a7a482b commit c933a20
Show file tree
Hide file tree
Showing 4 changed files with 1,039 additions and 560 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
Expand All @@ -22,9 +22,10 @@ jobs:
working-directory: ./report

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false # No dependency

- name: Build (Linux)
run: go build -ldflags="-s -w" -o "dirstat" "cmd/dirstat.go"
Expand All @@ -49,7 +50,7 @@ jobs:
Set-Content -Path "$archive.sha256" -Value "$hash`n" -Encoding 'ascii' -NoNewline
- name: Publish artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dirstat
path: dirstat_*_*.*
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/gaelgirodon/dirstat

go 1.22
go 1.23
Loading

0 comments on commit c933a20

Please sign in to comment.