Skip to content

Commit

Permalink
github: update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Feb 29, 2024
1 parent 6d25008 commit e0fd8c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: shallow clone
uses: actions/checkout@v3
uses: actions/checkout@v4
if: "!startsWith(github.ref, 'refs/tags/')"

- name: deep clone
uses: actions/checkout@v3
uses: actions/checkout@v4
if: startsWith(github.ref, 'refs/tags/')
with:
fetch-depth: 0
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Build
run: ls cmd/ | xargs -I'{}' sh -c "cd ./cmd/{} && go build -v ."

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: carapace
path: ./cmd/carapace/carapace
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
container: ghcr.io/rsteube/carapace
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit e0fd8c7

Please sign in to comment.