Skip to content

Commit

Permalink
ci: update go version inside github action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalenic committed Sep 3, 2024
1 parent 4894d9c commit b1d5326
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ env:
#
# And from pyenv docs setting this PYENV_VERSION as env-var would set the python version globally
PYENV_VERSION: '3.12'
GOENV_VERSION: '1.22'

jobs:
pre-commit-lint-security:
Expand Down Expand Up @@ -82,21 +83,23 @@ jobs:
runs-on: codebuild-orcabus-codebuild-gh-runner-${{ github.run_id }}-${{ github.run_attempt }}
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Rust installation
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt

- name: Print toolchain versions
run: |
node -v
python -V
pip3 -V
rustc --version
go version
make --version
- name: Checkout code
uses: actions/checkout@v4

- name: Rust installation
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt

- name: Install dependencies
run: |
yarn install --immutable
Expand Down

0 comments on commit b1d5326

Please sign in to comment.