Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
GITHUB_STATE -> GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Nov 5, 2023
1 parent 6215e45 commit 1d6febf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
id: binary
run: |
if [[ "${{ matrix.network }}" == "ethereum" ]]; then
echo "binary=reth" >> $GITHUB_STATE
echo "binary=reth" >> $GITHUB_OUTPUT
else
echo "binary=op-reth" >> $GITHUB_STATE
echo "binary=op-reth" >> $GITHUB_OUTPUT
fi
- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
id: binary
run: |
if [[ "${{ matrix.network }}" == "ethereum" ]]; then
echo "binary=reth" >> $GITHUB_STATE
echo "binary=reth" >> $GITHUB_OUTPUT
else
echo "binary=op-reth" >> $GITHUB_STATE
echo "binary=op-reth" >> $GITHUB_OUTPUT
fi
- name: Run tests
run: |
Expand Down

0 comments on commit 1d6febf

Please sign in to comment.