This is an automated email from the ASF dual-hosted git repository. Amar3tto pushed a commit to branch validate-275-rc1 in repository https://gitbox.apache.org/repos/asf/beam.git
commit 7310d7a2d9fc760199a0d512729d7b6e147cc84b Author: Vitaly Terentyev <[email protected]> AuthorDate: Wed Jul 1 14:12:09 2026 +0400 Install wget --- .github/workflows/run_rc_validation_go_wordcount.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_rc_validation_go_wordcount.yml b/.github/workflows/run_rc_validation_go_wordcount.yml index 2112bec6b3f..2dbef177d08 100644 --- a/.github/workflows/run_rc_validation_go_wordcount.yml +++ b/.github/workflows/run_rc_validation_go_wordcount.yml @@ -48,12 +48,14 @@ jobs: runs-on: self-hosted steps: - name: Checkout repository - uses: actions/checkout@v7 + uses: actions/checkout@v6 - name: Set up environment uses: ./.github/actions/setup-environment-action with: go-version: default + - name: Install wget + run: sudo apt-get update && sudo apt-get install -y wget - name: Setup Go Module and Fetch RC id: setup_go
