Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
nmiyake committed Dec 11, 2024
1 parent 87243bf commit 83dc75d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish-godel-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
#####################
# START Go dist setup
#####################
- id: set-gopath
run: echo "::set-output name=GOPATH::$(go env GOPATH)"
run: echo "GOPATH=$(go env GOPATH)" >> "$GITHUB_OUTPUT"
- id: go-dist-info
uses: palantir/godel/go-dist-info@nmiyake/test-github-actions
with:
gopath: ${{ steps.set-gopath.outputs.gopath }}
gopath: ${{ steps.set-gopath.outputs.GOPATH }}
- id: restore-go-dist-from-cache
if: steps.go-dist-info.outputs.go-dist-exists != 'true'
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
${{ steps.set-gopath.outputs.gopath }}/go-dists/${{ steps.go-dist-info.outputs.go-dist-version }}
${{ steps.set-gopath.outputs.GOPATH }}/go-dists/${{ steps.go-dist-info.outputs.go-dist-version }}
key: ${{ runner.os }}-${{ steps.go-dist-info.outputs.go-dist-version }}
- id: go-dist-setup
uses: palantir/godel/go-dist-setup@nmiyake/test-github-actions
Expand All @@ -32,13 +32,13 @@ jobs:
#####################
# END Go dist setup
#####################
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- uses: actions/cache@v2
- uses: actions/cache@v4
with:
path: |
~/.godel
Expand Down

0 comments on commit 83dc75d

Please sign in to comment.