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 82a823e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 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,9 +65,9 @@ jobs:
container: ghcr.io/rsteube/carapace
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: carapace
path: ./cmd/carapace
Expand Down
2 changes: 1 addition & 1 deletion completers/ln_completer/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/rsteube/carapace-bin/completers/manually_completer/cmd"
import "github.com/rsteube/carapace-bin/completers/ln_completer/cmd"

func main() {
cmd.Execute()
Expand Down

0 comments on commit 82a823e

Please sign in to comment.