Skip to content

SYSENG-1820: update to go 1.22 #1531

SYSENG-1820: update to go 1.22

SYSENG-1820: update to go 1.22 #1531

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO_CURRENT: "1.22"
GO_LATEST: "1.23"
GO111MODULE: on
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: avto-dev/markdown-lint@v1
with:
config: '.markdownlint.yml'
args: 'docs'
misspell:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- version: "${{ env.GO_CURRENT }}"

Check failure on line 30 in .github/workflows/documentation.yml

View workflow run for this annotation

GitHub Actions / Documentation

Invalid workflow file

The workflow is not valid. .github/workflows/documentation.yml (Line: 30, Col: 20): Unrecognized named-value: 'env'. Located at position 1 within expression: env.GO_CURRENT .github/workflows/documentation.yml (Line: 32, Col: 20): Unrecognized named-value: 'env'. Located at position 1 within expression: env.GO_LATEST
name: target
- version: "${{ env.GO_LATEST }}"
name: latest
name: "Spell check with ${{ matrix.go.name }} Go"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go.version }}
- run: |
make docs-lint