From 7c41d2c8481c10ec0c1b3b29b7b37114f2a6297f Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Fri, 27 Dec 2024 22:15:34 +0000 Subject: [PATCH 1/2] Update jwt to version 2.10.1 --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index 588c0a6f5..4195c05d3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -144,7 +144,7 @@ GEM concurrent-ruby (~> 1.0) json (2.3.1) jsonapi-renderer (0.2.2) - jwt (2.9.3) + jwt (2.10.1) base64 listen (3.6.0) rb-fsevent (~> 0.10, >= 0.10.3) From 77ae477736f1dbf4c39b552a7d02b53176560eac Mon Sep 17 00:00:00 2001 From: Thomas Schmidt Date: Thu, 9 Jan 2025 17:55:05 +0100 Subject: [PATCH 2/2] install libsqlite3-dev --- .github/workflows/lint-unit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint-unit.yml b/.github/workflows/lint-unit.yml index e97009ec4..670167ca5 100644 --- a/.github/workflows/lint-unit.yml +++ b/.github/workflows/lint-unit.yml @@ -52,6 +52,8 @@ jobs: --health-retries=3 steps: + - name: Install dependencies + run: sudo apt-get install -y libsqlite3-dev - uses: actions/checkout@v4 # Run bundle install and cache the installed gems @@ -96,4 +98,4 @@ jobs: run: | echo "::group::Version verification checks" ruby ci/check-version-matches.rb - echo "::endgroup::" \ No newline at end of file + echo "::endgroup::"