From bf6a9709c42d8647dc1076a00d6517cbc8a08388 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Fri, 27 Sep 2024 13:21:01 +0200 Subject: [PATCH 1/2] core --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1ad67f5..ffbc9b8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @dnstapir/pop +* @dnstapir/core From 5ab924658ef0da33084e4490373d9ebf35c62088 Mon Sep 17 00:00:00 2001 From: Jakob Schlyter Date: Fri, 27 Sep 2024 13:35:43 +0200 Subject: [PATCH 2/2] update --- .github/workflows/build.yml | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aa16b35..4dcc838 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,38 +1,20 @@ -name: Go +name: Build on: [push] jobs: build: - runs-on: ubuntu-latest strategy: matrix: - go-version: ['1.22.3'] - + go-version: ['1.23.1'] steps: - uses: actions/checkout@v4 - - name: Clone private module - uses: actions/checkout@v4 - with: - repository: dnstapir/tapir - ssh-key: ${{ secrets.TAPIR_REPO_SSH_PRIVATE_KEY }} - path: tapir - - name: Update path to private module - run: sed -i.old "s,\.\./tapir,./tapir,g" go.mod - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Display Go version run: go version - - name: Install dependencies - run: go mod download - - name: Make version - run: make version.go - - name: Vet - run: go vet -v - - name: Test - run: go test -v - name: Build - run: go build -v + run: make build