Skip to content

Commit

Permalink
don't use deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
mibmo committed Apr 10, 2023
1 parent f6451a1 commit afe5804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
go-version: ${{ env.GO_VERSION_SPECIFIER }}
- name: Compute cache key
id: cache-data
run: echo "::set-output name=key::${{ runner.os }}-deps-$(git submodule status | sha256sum | cut -d ' ' -f1)"
run: echo "key=${{ runner.os }}-deps-$(git submodule status | sha256sum | cut -d ' ' -f1)" >> $GITHUB_OUTPUT
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
go-version: ${{ env.GO_VERSION_SPECIFIER }}
- name: Compute cache key
id: cache-data
run: echo "::set-output name=key::${{ runner.os }}-deps-$(git submodule status | sha256sum | cut -d ' ' -f1)"
run: echo "key=${{ runner.os }}-deps-$(git submodule status | sha256sum | cut -d ' ' -f1)" >> $GITHUB_OUTPUT
- name: Cache dependencies
id: cache-deps
uses: actions/cache@v3
Expand Down

0 comments on commit afe5804

Please sign in to comment.