Skip to content

Commit

Permalink
Mark git workspaces safe (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmmarslender authored Mar 18, 2024
1 parent 94e4ba2 commit c38065d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:
GOOS: ["linux", "darwin", "windows"]
GOARCH: ["amd64", "arm64"]
steps:
- uses: Chia-Network/actions/git-mark-workspace-safe@main

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build Binary
env:
Expand All @@ -41,8 +43,10 @@ jobs:
GOOS: ["linux"]
GOARCH: ["amd64", "arm64"]
steps:
- uses: Chia-Network/actions/git-mark-workspace-safe@main

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install fpm
run: sudo gem install fpm
Expand Down Expand Up @@ -86,7 +90,10 @@ jobs:
- installers
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
- uses: Chia-Network/actions/git-mark-workspace-safe@main

- name: Checkout code
uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
env:
GOFLAGS: "-buildvcs=false"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Test
run: make test

0 comments on commit c38065d

Please sign in to comment.