Skip to content

Commit

Permalink
Merge branch 'master' into add_homepage_url_to_user_profile
Browse files Browse the repository at this point in the history
  • Loading branch information
martinemde authored Nov 20, 2024
2 parents 9b2bf91 + 7aaff9c commit 0f503b2
Show file tree
Hide file tree
Showing 25 changed files with 232 additions and 165 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@9278e421667d5d90a2839487a482448c4ec7df4d # v3.27.2
uses: github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -58,7 +58,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@9278e421667d5d90a2839487a482448c4ec7df4d # v3.27.2
uses: github/codeql-action/autobuild@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -71,6 +71,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@9278e421667d5d90a2839487a482448c4ec7df4d # v3.27.2
uses: github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/scorecards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@ jobs:

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@9278e421667d5d90a2839487a482448c4ec7df4d # v3.27.2
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
with:
sarif_file: results.sarif
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ jobs:

- name: Upload coverage to Codecov
if: matrix.rubygems.name == 'locked' && (success() || failure())
uses: codecov/codecov-action@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0
uses: codecov/codecov-action@985343d70564a82044c1b7fcb84c2fa05405c1a2 # v5.0.4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
18 changes: 9 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ ruby file: ".ruby-version"
gem "rails", "~> 7.2.1"
gem "rails-i18n", "~> 7.0"

gem "aws-sdk-s3", "~> 1.170"
gem "aws-sdk-sqs", "~> 1.88"
gem "aws-sdk-s3", "~> 1.172"
gem "aws-sdk-sqs", "~> 1.89"
gem "bootsnap", "~> 1.18"
gem "clearance", "~> 2.9"
gem "dalli", "~> 3.2"
gem "datadog", "~> 2.4"
gem "datadog", "~> 2.7"
gem "dogstatsd-ruby", "~> 5.6"
gem "google-protobuf", "~> 4.28"
gem "faraday", "~> 2.12"
Expand All @@ -34,7 +34,7 @@ gem "rack", "~> 3.1"
gem "rackup", "~> 2.2"
gem "rack-sanitizer", "~> 2.0"
gem "rbtrace", "~> 0.5.1"
gem "rdoc", "~> 6.7"
gem "rdoc", "~> 6.8"
gem "roadie-rails", "~> 3.3"
gem "ruby-magic", "~> 0.6"
gem "shoryuken", "~> 6.2", require: false
Expand All @@ -49,18 +49,18 @@ gem "rack-attack", "~> 6.6"
gem "rqrcode", "~> 2.1"
gem "rotp", "~> 6.2"
gem "unpwn", "~> 1.0"
gem "webauthn", "~> 3.1"
gem "browser", "~> 6.0"
gem "webauthn", "~> 3.2"
gem "browser", "~> 6.1"
gem "bcrypt", "~> 3.1"
gem "maintenance_tasks", "~> 2.8"
gem "maintenance_tasks", "~> 2.9"
gem "strong_migrations", "~> 2.1"
gem "phlex-rails", "~> 1.2"
gem "discard", "~> 1.4"
gem "user_agent_parser", "~> 2.18"
gem "pghero", "~> 3.6"
gem "faraday-multipart", "~> 1.0"
gem "timescaledb", "~> 0.3"
gem "sigstore", "~> 0.1.1"
gem "sigstore", "~> 0.2.1"

# Admin dashboard
gem "avo", "~> 3.13"
Expand All @@ -80,7 +80,7 @@ end
# Logging
gem "amazing_print", "~> 1.6"
gem "rails_semantic_logger", "~> 4.17"
gem "pp", "0.6.0"
gem "pp", "0.6.1"

# Former default gems
gem "csv", "~> 3.3" # zeitwerk-2.6.12
Expand Down
Loading

0 comments on commit 0f503b2

Please sign in to comment.