Skip to content

Commit

Permalink
bump foundry to stable (#15916)
Browse files Browse the repository at this point in the history
  • Loading branch information
RensR authored Jan 14, 2025
1 parent 6505cb2 commit 1d77b7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-solidity-foundry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
shell: bash
working-directory: ${{ inputs.working-directory }}
run: |
foundry_version=$(grep -Eo "foundryup --version [^ ]+" GNUmakefile | awk '{print $3}')
foundry_version=$(grep -Eo "foundryup --install [^ ]+" GNUmakefile | awk '{print $3}')
if [ -z "$foundry_version" ]; then
echo "::error::Foundry version not found in GNUmakefile"
exit 1
Expand All @@ -26,6 +26,6 @@ runs:
echo "foundry-version=$foundry_version" >> $GITHUB_OUTPUT
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0
uses: foundry-rs/foundry-toolchain@de808b1eea699e761c404bda44ba8f21aba30b2c # v1.3.1
with:
version: ${{ steps.extract-foundry-version.outputs.foundry-version }}
2 changes: 1 addition & 1 deletion contracts/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ mockery: $(mockery) ## Install mockery.

.PHONY: foundry
foundry: ## Install foundry.
foundryup --version nightly-aa69ed1e46dd61fbf9d73399396a4db4dd527431
foundryup --install v0.3.0

.PHONY: foundry-refresh
foundry-refresh: foundry
Expand Down

0 comments on commit 1d77b7f

Please sign in to comment.