Skip to content

Commit

Permalink
Patch deprecated set-output command in CI (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
endorama authored Mar 7, 2023
1 parent 43ac2ef commit 7f49cd1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: get go version
run: |
gv=$(cat .go-version)
echo "::set-output name=go::$gv"
echo "go=$gv" >> $GITHUB_OUTPUT
id: version

- name: install Go
Expand All @@ -34,7 +34,7 @@ jobs:
- name: get go version
run: |
gv=$(cat .go-version)
echo "::set-output name=go::$gv"
echo "go=$gv" >> $GITHUB_OUTPUT
id: version

- name: install Go
Expand All @@ -55,7 +55,7 @@ jobs:
- name: get go version
run: |
gv=$(cat .go-version)
echo "::set-output name=go::$gv"
echo "go=$gv" >> $GITHUB_OUTPUT
id: version

- name: install Go
Expand All @@ -77,7 +77,7 @@ jobs:
- name: get go version
run: |
gv=$(cat .go-version)
echo "::set-output name=go::$gv"
echo "go=$gv" >> $GITHUB_OUTPUT
id: version

- name: install Go
Expand All @@ -100,7 +100,7 @@ jobs:
- name: get go version
run: |
gv=$(cat .go-version)
echo "::set-output name=go::$gv"
echo "go=$gv" >> $GITHUB_OUTPUT
id: version

- name: install Go
Expand Down

0 comments on commit 7f49cd1

Please sign in to comment.