Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Nov 4, 2024
1 parent f962558 commit 0707c31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ None

#### Variables

* `ant_version` [default: `1.10.14`]: Version to install
* `ant_version` [default: `1.10.15`]: Version to install
* `ant_install_prefix` [default: `/opt`]: Install prefix

## Dependencies
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# defaults file
---
ant_version: 1.10.14
ant_version: 1.10.15
ant_install_prefix: /opt
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

- name: download

Check warning on line 15 in tasks/main.yml

View workflow job for this annotation

GitHub Actions / Lint

name[casing]

All names should start with an uppercase letter.
ansible.builtin.get_url:
url: "http://apache.cs.uu.nl/ant/binaries/apache-ant-{{ ant_version }}-bin.tar.gz"
url: "https://dlcdn.apache.org/ant/binaries/apache-ant-{{ ant_version }}-bin.tar.gz"
dest: "{{ ant_downloads_path }}/apache-ant-{{ ant_version }}-bin.tar.gz"
owner: root
group: root
Expand Down

0 comments on commit 0707c31

Please sign in to comment.