Skip to content

Commit

Permalink
Merge pull request #118 from gtri/wip-0.7.1
Browse files Browse the repository at this point in the history
update: elixir 1.14.1 upgrade
  • Loading branch information
kitplummer authored Nov 13, 2022
2 parents 1e93b4b + ef6aa85 commit c5c44dd
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG ALPINE_VERSION=3.10
ARG ALPINE_VERSION=3.16

FROM elixir:1.9.4-alpine AS builder
FROM elixir:1.14.1-alpine AS builder

ARG MIX_ENV=gha

Expand Down
6 changes: 3 additions & 3 deletions bom.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

import Config

config :logger, :console, format: "kp: $time $metadata[$level] $message\n"
config :logger, :console, format: "lei: $time $metadata[$level] $message\n"
import_config "#{Mix.env()}.exs"
7 changes: 4 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule GithubModule.MixProject do
[
app: :lowendinsight,
description: description(),
version: "0.7.0",
version: "0.7.1",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -45,7 +45,8 @@ defmodule GithubModule.MixProject do
{:temp, "~> 0.4"},
{:excoveralls, "~> 0.14", only: :test},
{:yarn_parser, "~> 0.3"},
{:sweet_xml, "~> 0.7.1"}
{:sweet_xml, "~> 0.7.1"},
{:sbom, "~> 0.6", only: :dev, runtime: false}
]
end

Expand All @@ -59,7 +60,7 @@ defmodule GithubModule.MixProject do

defp package() do
[
licenses: ["BSD-3"],
licenses: ["BSD-3-Clause"],
links: links()
]
end
Expand Down
1 change: 1 addition & 0 deletions mix.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"nimble_parsec": {:hex, :nimble_parsec, "0.6.0", "32111b3bf39137144abd7ba1cce0914533b2d16ef35e8abc5ec8be6122944263", [:mix], [], "hexpm", "27eac315a94909d4dc68bc07a4a83e06c8379237c5ea528a9acff4ca1c873c52"},
"parse_trans": {:hex, :parse_trans, "3.3.1", "16328ab840cc09919bd10dab29e431da3af9e9e7e7e6f0089dd5a2d2820011d8", [:rebar3], [], "hexpm", "07cd9577885f56362d414e8c4c4e6bdf10d43a8767abb92d24cbe8b24c54888b"},
"poison": {:hex, :poison, "4.0.1", "bcb755a16fac91cad79bfe9fc3585bb07b9331e50cfe3420a24bcc2d735709ae", [:mix], [], "hexpm", "ba8836feea4b394bb718a161fc59a288fe0109b5006d6bdf97b6badfcf6f0f25"},
"sbom": {:hex, :sbom, "0.6.2", "bddb622a2590a01830e4e0b581fa3139ee7f06a9ef55e84a08eb3059b970b3de", [:mix], [], "hexpm", "c14c44d43895cf46a3ebe8236b755273bd2aa1ba1b84feb5403e20e6b53cfe40"},
"ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.6", "cf344f5692c82d2cd7554f5ec8fd961548d4fd09e7d22f5b62482e5aeaebd4b0", [:make, :mix, :rebar3], [], "hexpm", "bdb0d2471f453c88ff3908e7686f86f9be327d065cc1ec16fa4540197ea04680"},
"sweet_xml": {:hex, :sweet_xml, "0.7.3", "debb256781c75ff6a8c5cbf7981146312b66f044a2898f453709a53e5031b45b", [:mix], [], "hexpm", "e110c867a1b3fe74bfc7dd9893aa851f0eed5518d0d7cad76d7baafd30e4f5ba"},
"temp": {:hex, :temp, "0.4.7", "2c78482cc2294020a4bc0c95950b907ff386523367d4e63308a252feffbea9f2", [:mix], [], "hexpm", "6af19e7d6a85a427478be1021574d1ae2a1e1b90882586f06bde76c63cd03e0d"},
Expand Down
4 changes: 2 additions & 2 deletions test/mix_scan_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ defmodule Mix.Tasks.ScanTest do
assert_received {:mix_shell, :info, [report]}

report_data = Poison.decode!(report)
assert 33 == report_data["metadata"]["repo_count"]
assert 13 == report_data["metadata"]["dependency_count"]
assert 34 == report_data["metadata"]["repo_count"]
assert 14 == report_data["metadata"]["dependency_count"]
end
end

Expand Down

0 comments on commit c5c44dd

Please sign in to comment.