From bf501ec87998b835b44fe22b3c7ed948682d32a9 Mon Sep 17 00:00:00 2001 From: Gabor Boros Date: Wed, 12 Jun 2024 16:08:40 +0200 Subject: [PATCH] build: fix GitHub workflow artifact upload Signed-off-by: Gabor Boros --- .github/workflows/build.yml | 16 ++++++++-------- CHANGELOG.md | 6 +++++- go.mod | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3d5513..8c45c1b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,16 +13,16 @@ jobs: strategy: matrix: go: - - "^1.22" + - "1.22.4" os: - ubuntu-latest - windows-latest - macos-latest runs-on: "${{ matrix.os }}" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: "${{ matrix.go }}" - name: Prerequisites @@ -34,7 +34,7 @@ jobs: - name: Stash test results uses: actions/upload-artifact@master with: - name: "Test results" + name: "${{ matrix.os }}-${{ matrix.go }}" path: .coverage.out retention-days: 7 - name: Build @@ -46,15 +46,15 @@ jobs: needs: - test steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Unstash test results uses: actions/download-artifact@master with: - name: "Test results" + name: ubuntu-latest-1.22.4 - name: Upload test results - uses: paambaati/codeclimate-action@v3.0.0 + uses: paambaati/codeclimate-action@v6 env: - CC_TEST_REPORTER_ID: 20a724e6a2bf80ab3a3cb88c02df2e95bf918da42e63bc5eaa6f0c9dfbe7e77d + CC_TEST_REPORTER_ID: c9d94a2c1e909f32ec045ed9653456f64c0666bfde95012e9b913dbe4b988020 with: prefix: github.com/${{github.repository}} coverageLocations: ${{github.workspace}}/.coverage.out:gocov diff --git a/CHANGELOG.md b/CHANGELOG.md index 689ca5b..2413ec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [0.3.4] - 2024-06-12 +## [0.3.4] - 2024-06-14 **Miscellaneous Tasks** @@ -14,6 +14,10 @@ All notable changes to this project will be documented in this file. - Adjust goreleaser configuration ([86e7efe](https://github.com/gabor-boros/minutes/commit/86e7efe2d84a9a0bd6e93314fb94abdcf7cf7583)) - Resolve linter errors ([c5d8865](https://github.com/gabor-boros/minutes/commit/c5d8865706a4ac628ba3eea0baa64acef68c0a09)) +**Build** + +- Fix GitHub workflow artifact upload ([593d850](https://github.com/gabor-boros/minutes/commit/593d850b348690f71d6ce81e059fb341765bec57)) + ## [0.3.3] - 2023-02-27 **Miscellaneous Tasks** diff --git a/go.mod b/go.mod index 65657a6..3ad67bb 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gabor-boros/minutes -go 1.22 +go 1.22.4 require ( github.com/jedib0t/go-pretty/v6 v6.5.9