Skip to content

Bump golang.org/x/term from 0.42.0 to 0.43.0 #13

Bump golang.org/x/term from 0.42.0 to 0.43.0

Bump golang.org/x/term from 0.42.0 to 0.43.0 #13

# SPDX-FileCopyrightText: Copyright 2026 Carabiner Systems, Inc
# SPDX-License-Identifier: Apache-2.0
name: go-tests
on:
pull_request:
branches: [ "main" ]
workflow_dispatch: {}
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
steps:
- name: Preserve line endings
run: git config --global core.autocrlf false
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Resolve Go versions
id: go-versions
uses: carabiner-dev/actions/go/versions@360ffa1eb909b0105d4eccb6d6ef337911c34952 # v1.1.6
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ steps.go-versions.outputs.GO_VERSION_STABLE }}
cache: false
- name: Test
run: |
go get -d ./...
go test -v ./...