Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-commit0-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
echo "Using triggering ref (default)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-gaia-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-multiswebench-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# When ref is empty, actions/checkout uses the commit that triggered the workflow
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-programbench-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
fi

- name: Checkout benchmarks repo
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-swebench-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-swebenchmultimodal-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:

- name: Comment on PR with build results
if: github.event_name == 'pull_request_target'
uses: actions/github-script@v8
uses: actions/github-script@v9
with:
script: |
const fs = require('fs');
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-swebenchpro-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
echo "ref=" >> "$GITHUB_OUTPUT"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
uses: docker/setup-buildx-action@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:

- name: Upload build logs
if: always()
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build-logs-${{ github.run_id }}
path: build-logs.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-swegym-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# When ref is empty, actions/checkout uses the commit that triggered the workflow
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-swesmith-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# When ref is empty, actions/checkout uses the commit that triggered the workflow
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-swtbench-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
echo "Using default ref (the commit that triggered this workflow)"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenHands/benchmarks
ref: ${{ steps.checkout-ref.outputs.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghcr-retention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 720 # 12h — first real run may delete tens of thousands of versions
steps:
- name: Delete old eval-agent-server versions
uses: snok/container-retention-policy@4f22ef80902ad409ed55a99dc5133cc1250a0d03 # v3.0.0
uses: snok/container-retention-policy@d3bdcf5ce9b05f685154e4a16c39233b245e3d53 # v3.1.0
with:
account: OpenHands
token: ${{ secrets.GHCR_CLEANUP_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
submodules: recursive
Expand Down
Loading