diff options
author | David Robertson <davidr@element.io> | 2023-04-06 15:23:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 15:23:36 +0100 |
commit | ec6430bad88ee7ab0b6d9df0d54cdbe68fa3c431 (patch) | |
tree | 28abeb05a4b0bddf00bd1d7672ea25e1080bb1d7 /.github | |
parent | Fix the 'set_device_id_for_pushers_txn' background update. (#15391) (diff) | |
download | synapse-ec6430bad88ee7ab0b6d9df0d54cdbe68fa3c431.tar.xz |
Use setup-go instead of relying on go 1.17 to exist (#15403)
* Use setup-go instead of relying on 1.17 to exist See https://github.com/actions/runner-images/issues/7276 * Changelog
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/latest_deps.yml | 2 | ||||
-rw-r--r-- | .github/workflows/tests.yml | 2 | ||||
-rw-r--r-- | .github/workflows/twisted_trunk.yml | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/latest_deps.yml b/.github/workflows/latest_deps.yml index d5a68ffa1f..c3705b059b 100644 --- a/.github/workflows/latest_deps.yml +++ b/.github/workflows/latest_deps.yml @@ -184,6 +184,8 @@ jobs: with: path: synapse + - uses: actions/setup-go@v4 + - name: Prepare Complement's Prerequisites run: synapse/.ci/scripts/setup_complement_prerequisites.sh diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a2cec324a5..f895163e51 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -555,6 +555,8 @@ jobs: toolchain: 1.58.1 - uses: Swatinem/rust-cache@v2 + - uses: actions/setup-go@v4 + - name: Prepare Complement's Prerequisites run: synapse/.ci/scripts/setup_complement_prerequisites.sh diff --git a/.github/workflows/twisted_trunk.yml b/.github/workflows/twisted_trunk.yml index 461c85067c..ad35c6b570 100644 --- a/.github/workflows/twisted_trunk.yml +++ b/.github/workflows/twisted_trunk.yml @@ -147,6 +147,8 @@ jobs: with: path: synapse + - uses: actions/setup-go@v4 + - name: Prepare Complement's Prerequisites run: synapse/.ci/scripts/setup_complement_prerequisites.sh |