From c5b3d6d21d1225b903978eeb01749a90518a7786 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 06:05:19 +0000 Subject: [PATCH 1/2] Bump github.com/go-resty/resty/v2 from 2.15.1 to 2.16.5 Bumps [github.com/go-resty/resty/v2](https://github.com/go-resty/resty) from 2.15.1 to 2.16.5. - [Release notes](https://github.com/go-resty/resty/releases) - [Commits](https://github.com/go-resty/resty/compare/v2.15.1...v2.16.5) --- updated-dependencies: - dependency-name: github.com/go-resty/resty/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- go.mod | 4 ++-- go.sum | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/go.mod b/go.mod index a4f0a2f..38a92e6 100644 --- a/go.mod +++ b/go.mod @@ -4,9 +4,9 @@ go 1.23 // when you update the Fyne version, also update the Makefile target require ( - github.com/alecthomas/kong v1.6.0 fyne.io/fyne/v2 v2.5.3 - github.com/go-resty/resty/v2 v2.15.1 + github.com/alecthomas/kong v1.6.0 + github.com/go-resty/resty/v2 v2.16.5 github.com/libp2p/go-reuseport v0.4.0 github.com/mattn/go-colorable v0.1.13 github.com/relvacode/iso8601 v1.6.0 diff --git a/go.sum b/go.sum index c0343bc..26fcc62 100644 --- a/go.sum +++ b/go.sum @@ -101,8 +101,8 @@ github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2 github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a h1:vxnBhFDDT+xzxf1jTJKMKZw3H0swfWk9RpWbBbDK5+0= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20240506104042-037f3cc74f2a/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-resty/resty/v2 v2.15.1 h1:vuna8FM2EaQ6IYbtjh+Gjh00uu7xEWuuGyTKeIaYkvE= -github.com/go-resty/resty/v2 v2.15.1/go.mod h1:0fHAoK7JoBy/Ch36N8VFeMsK7xQOHhvWaC3iOktwmIU= +github.com/go-resty/resty/v2 v2.16.5 h1:hBKqmWrr7uRc3euHVqmh1HTHcKn99Smr7o5spptdhTM= +github.com/go-resty/resty/v2 v2.16.5/go.mod h1:hkJtXbA2iKHzJheXYvQ8snQES5ZLGKMwQ07xAwp/fiA= github.com/go-text/render v0.2.0 h1:LBYoTmp5jYiJ4NPqDc2pz17MLmA3wHw1dZSVGcOdeAc= github.com/go-text/render v0.2.0/go.mod h1:CkiqfukRGKJA5vZZISkjSYrcdtgKQWRa2HIzvwNN5SU= github.com/go-text/typesetting v0.2.0 h1:fbzsgbmk04KiWtE+c3ZD4W2nmCRzBqrqQOvYlwAOdho= From 41c4b0af954c793849e30e0f79d6cd5f2992e355 Mon Sep 17 00:00:00 2001 From: Aaron Turner Date: Wed, 5 Feb 2025 07:34:35 -0800 Subject: [PATCH 2/2] tweak codecov action --- .github/workflows/tests.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 45f8285..52c5d2f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -156,9 +156,13 @@ jobs: - name: Generate Coverage Report run: | - make unittest - # echo "Run, Build Application using script" - # ./location_of_script_within_repo/buildscript.sh + make unittest + if [ -f ./coverage.out ]; then + echo "Coverage file exists." + else + echo "Coverage file does not exist." + exit 1 + fi - name: Perform CodeQL Analysis uses: codecov/codecov-action@v5 @@ -167,5 +171,5 @@ jobs: files: ./coverage.out fail_ci_if_error: true flags: unittests - token: '${{ secrets.CODECOV_TOKEN }}' + token: ${{ secrets.CODECOV_TOKEN }} verbose: true