Skip to content

Commit

Permalink
Update elixir version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanDGiraldoM committed Jul 4, 2024
1 parent 3e204e6 commit e573b63
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: erlef/setup-beam@v1
with:
otp-version: '26'
elixir-version: '1.16'
elixir-version: '1.17'

- name: Restore dependencies cache
uses: actions/cache@v3
Expand Down Expand Up @@ -53,4 +53,4 @@ jobs:
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
14 changes: 7 additions & 7 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule DistributedPerformanceAnalyzer.MixProject do
[
app: :distributed_performance_analyzer,
version: "0.1.0",
elixir: "~> 1.16",
elixir: "~> 1.17",
start_permanent: true,
test_coverage: [
tool: ExCoveralls,
Expand Down Expand Up @@ -64,8 +64,8 @@ defmodule DistributedPerformanceAnalyzer.MixProject do
{:finch, "~> 0.1"},
{:opentelemetry_plug,
git: "https://github.com/juancgalvis/opentelemetry_plug.git", tag: "master"},
{:opentelemetry_api, "~> 1.2"},
{:opentelemetry_exporter, "~> 1.6"},
{:opentelemetry_api, "~> 1.0"},
{:opentelemetry_exporter, "~> 1.0"},
{:telemetry, "~> 1.0"},
{:telemetry_poller, "~> 1.0"},
{:telemetry_metrics_prometheus, "~> 1.0"},
Expand All @@ -77,11 +77,11 @@ defmodule DistributedPerformanceAnalyzer.MixProject do
{:cors_plug, "~> 3.0"},
{:excoveralls, "~> 0.18", only: :test},
{:ex_unit_sonarqube, "~> 0.1", only: :test},
{:constructor, "~> 1.1"},
{:nimble_csv, "~> 1.2"},
{:constructor, "~> 1.0"},
{:nimble_csv, "~> 1.0"},
{:file_size, "~> 3.0"},
{:mint, "~> 1.5"},
{:tesla, "~> 1.8"},
{:mint, "~> 1.0"},
{:tesla, "~> 1.0"},
{:git_hooks, "~> 0.7", only: [:dev], runtime: false},
{:benchee, "~> 1.0", only: [:dev, :test]},
{:benchee_html, "~> 1.0", only: [:dev, :test]},
Expand Down
Loading

0 comments on commit e573b63

Please sign in to comment.