From fbdb840ac1e92ac85f0cd613b7b393ac18870633 Mon Sep 17 00:00:00 2001 From: Joe Garcia Date: Thu, 30 May 2024 14:41:29 -0400 Subject: [PATCH] chore: Update runs-on to macos-latest in go-test.yml --- .github/workflows/go-test.yml | 2 +- .github/workflows/golangci-lint.yml | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 88948ce..be6dfa1 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index be6a397..d989ebf 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -13,17 +13,13 @@ permissions: jobs: golangci: - strategy: - matrix: - go: [stable] - os: [ubuntu-latest, macos-latest, windows-latest] name: lint - runs-on: ${{ matrix.os }} + runs-on: macos-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: ${{ matrix.go }} + go-version: stable - name: golangci-lint uses: golangci/golangci-lint-action@v6 with: