chore 📦: Update log2ram version to 1.7.2 and add dynamic versioning in ram.yml #40

Merged
Jose merged 1 commits from dev into main 2026-02-16 18:50:08 +01:00
Owner

This commit updates the log2ram version to 1.7.2 and introduces dynamic versioning in the ram.yml file. This ensures that the log2ram version is always up-to-date with the latest release.

This commit updates the log2ram version to 1.7.2 and introduces dynamic versioning in the `ram.yml` file. This ensures that the log2ram version is always up-to-date with the latest release.
Jose added 1 commit 2026-02-16 18:48:57 +01:00
chore 📦: Update log2ram version to 1.7.2 and add dynamic versioning in ram.yml
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 12s
Gitleaks Scan / gitleaks (push) Successful in 5s
Markdown Lint / markdown-lint (push) Successful in 5s
ai-reviews / Review PR (pull_request) Successful in 13s
PR check / Gitleaks (pull_request) Successful in 4s
PR check / lint tests (pull_request) Successful in 14s
PR check / labeler (pull_request) Successful in 2s
PR check / handle_failures (pull_request) Has been skipped
PR check / handle_success (pull_request) Successful in 2s
6e44de23e9
This commit updates the log2ram version to 1.7.2 and introduces dynamic versioning in the `ram.yml` file. This ensures that the log2ram version is always up-to-date with the latest release.
gitea-actions bot reviewed 2026-02-16 18:49:28 +01:00
gitea-actions bot left a comment

Review Summary

  • defaults/main.yml: Addition of log2ram version Other than the above observation, the changes look good and there are no critical or major issues found.
  • tasks/ram.yml: Summary: The provided git diff updates the version number of a package being downloaded and installed, improving its adaptability to new versions.
# Review Summary * **defaults/main.yml**: Addition of log2ram version Other than the above observation, the changes look good and there are no critical or major issues found. * **tasks/ram.yml**: **Summary:** The provided git diff updates the version number of a package being downloaded and installed, improving its adaptability to new versions.
@@ -38,6 +38,7 @@ log2ram_ram_percent: 10
log2ram_min_size_mb: 128
log2ram_max_size_mb: 1024
log2ram_host_memtotal_mb: "{{ ansible_memtotal_mb }}"
log2ram_version: "1.7.2"

[Score: 2] The version number is hardcoded. It's recommended to use variables or a configuration file for version control and easier updates.

[Score: 2] The version number is hardcoded. It's recommended to use variables or a configuration file for version control and easier updates.
@@ -40,3 +40,3 @@
- name: ram | Download log2ram
ansible.builtin.get_url:
url: https://github.com/azlux/log2ram/archive/refs/tags/1.7.2.tar.gz
url: https://github.com/azlux/log2ram/archive/refs/tags/{{ log2ram_version }}.tar.gz

[Score: 2] The URL for downloading the package is dynamically generated based on the log2ram_version variable, ensuring the installation uses the correct version of the package.

[Score: 2] The URL for downloading the package is dynamically generated based on the `log2ram_version` variable, ensuring the installation uses the correct version of the package.
gitea-actions bot added the sourceci-pass labels 2026-02-16 18:49:54 +01:00
Jose merged commit 6458a4e0cf into main 2026-02-16 18:50:08 +01:00
Sign in to join this conversation.