Skip to content

Commit

Permalink
bump version of grafana-agent to 0.40.4 on all architectures (#142)
Browse files Browse the repository at this point in the history
* bump version of grafana-agent to 0.40.4 on all architectures
* change tox.ini to use ruff 0.5.0 CLI syntax
  • Loading branch information
ca-scribner authored Jun 28, 2024
1 parent 41dcfba commit 6eb1938
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/snap_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
_grafana_agent_snap_name = "grafana-agent"
_grafana_agent_snaps = {
# (confinement, arch): revision
("strict", "amd64"): 16,
("strict", "arm64"): 23,
("strict", "amd64"): 51, # 0.40.4
("strict", "arm64"): 52, # 0.40.4
}


Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ deps =
black
ruff
commands =
ruff --fix {[vars]all_path}
ruff check --fix {[vars]all_path}
black {[vars]all_path}

[testenv:lint]
Expand All @@ -45,7 +45,7 @@ deps =
codespell
commands =
codespell . --skip .git --skip .tox --skip build --skip lib --skip venv --skip .mypy_cache --skip *.svg
ruff {[vars]all_path}
ruff check {[vars]all_path}
black --check --diff {[vars]all_path}

[testenv:static-{charm,lib}]
Expand Down

0 comments on commit 6eb1938

Please sign in to comment.