Skip to content

CI: go install action #2

CI: go install action

CI: go install action #2

Workflow file for this run

name: ci_debugging
on:
push:
branches:
- main
- 'release/**'
pull_request:
paths-ignore:
- '**.md'
jobs:
# This job builds the dependency target of the test docker image for all supported architectures and cache it in GHA
go_stable:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: ./.github/actions/install-go
- run: |
go version
- uses: ./.github/actions/install-go
with:
stable: true
- run: |
go version
- uses: ./.github/actions/install-go
with:
old-stable: true
- run: |
go version
- uses: ./.github/actions/install-go
with:
canary: true
- run: |
go version