Skip to content

fix: rename TFE_SKIP_TLS_VERIFY, GHA security issue and bump go to v1.24.7 #332

fix: rename TFE_SKIP_TLS_VERIFY, GHA security issue and bump go to v1.24.7

fix: rename TFE_SKIP_TLS_VERIFY, GHA security issue and bump go to v1.24.7 #332

Workflow file for this run

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
name: Unit Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version-file: "go.mod"
- name: Download dependencies
run: make deps
- name: Run unit tests
run: make test