Skip to content

Commit

Permalink
Do some version-updatin'.
Browse files Browse the repository at this point in the history
  • Loading branch information
damiendart committed Jul 2, 2024
1 parent be80230 commit a8079c9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
26 changes: 13 additions & 13 deletions roles/development/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ development__binary_archives:

# See <https://developer.hashicorp.com/packer/downloads>.
- binaries: 'packer'
checksum: 'sha256:dcac06a4c671bbb71e916da5abe947ebf4d6aa35c197e21c7c7b1d68cb8b7cad'
url: 'https://releases.hashicorp.com/packer/1.11.0/packer_1.11.0_linux_amd64.zip'
checksum: 'sha256:07a9d92fe98d7bb4be09392c06ef6c4f9ffbc905fe6c29fff0622432367f01cc'
url: 'https://releases.hashicorp.com/packer/1.11.1/packer_1.11.1_linux_amd64.zip'

# See <https://github.com/koalaman/shellcheck/releases>.
- checksum: 'sha256:6c881ab0698e4e6ea235245f22832860544f17ba386442fe7e9d629f8cbedf87'
Expand All @@ -36,21 +36,21 @@ development__binary_archives:

development__debian_packages:
# See <https://github.com/jgm/pandoc/releases>.
- checksum: 'sha256:a6244d6e8f58c84e8cc57bc640b52b5462760750f80efd2afcb0fde5ce5b86d0'
url: 'https://github.com/jgm/pandoc/releases/download/3.2/pandoc-3.2-1-amd64.deb'
- checksum: 'sha256:0968e84fb28b91105f3403db3a8e64028fea74191947af4c9f5a1ff6c59086fd'
url: 'https://github.com/jgm/pandoc/releases/download/3.2.1/pandoc-3.2.1-1-amd64.deb'

# See <https://github.com/BurntSushi/ripgrep/releases>.
- checksum: 'sha256:78953d5a1c97cb363de0098ff73a7ef33fcae014abd4d62f0da490fe3f58ee94'
url: 'https://github.com/BurntSushi/ripgrep/releases/download/14.1.0/ripgrep_14.1.0-1_amd64.deb'

# See <https://github.com/go-task/task/releases>.
- checksum: 'sha256:ad90c23b9e77c11da0cc1f6cbf88240bc64f902e1f5bc43098f109467304cda1'
url: 'https://github.com/go-task/task/releases/download/v3.37.2/task_linux_amd64.deb'
- checksum: 'sha256:5668c3840456ecfb32b6af9ed139145b60444e8fa43890a65dc1af8f95a940a4'
url: 'https://github.com/go-task/task/releases/download/v3.38.0/task_linux_amd64.deb'

# The following checksum is for the entr 5.5 source code archive
# "5.5.tar.gz" from <https://github.com/eradman/entr/tags>.
development__entr_source_archive_checksum: 'sha256:128c0ce2efea5ae6bd3fd33c3cd31e161eb0c02609d8717ad37e95b41656e526'
development__entr_version: '5.5'
# The following checksum is for the entr 5.6 source code archive
# "5.6.tar.gz" from <https://github.com/eradman/entr/tags>.
development__entr_source_archive_checksum: 'sha256:0222b8df928d3b5a3b5194d63e7de098533e04190d9d9a154b926c6c1f9dd14e'
development__entr_version: '5.6'

# The following checksum is for "super-ttc-iosevka-22.0.2.zip" from
# <https://github.com/be5invis/Iosevka/releases>.
Expand All @@ -59,9 +59,9 @@ development__iosevka_version: '22.0.2'

# Obsidian releases are available at <https://obsidian.md/download> and
# <https://github.com/obsidianmd/obsidian-releases/releases/>. The
# following checksum is for the file "obsidian_1.6.3_amd64.deb".
development__obsidian_package_checksum: 'sha256:cf88a0a9967ff872175a13e9dfadadeddc6e0ff4f560bf0d7b2e20afd8e7d58c'
development__obsidian_version: '1.6.3'
# following checksum is for the file "obsidian-1.6.5-amd64.deb".
development__obsidian_package_checksum: 'sha256:2998e370edec62d2ab534a4ce2d233bffb7e49bc86cf85412de67017f73e1c8f'
development__obsidian_version: '1.6.5'

development__projects_folder: 'Shed'
development__run_gui_tasks: false
Expand Down
6 changes: 3 additions & 3 deletions roles/development/tasks/gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@
- name: 'Ensure the Obsidian Debian package is downloaded'
ansible.builtin.get_url:
checksum: '{{ development__obsidian_package_checksum }}'
dest: '{{ development__download_cache_directory }}/obsidian_{{ development__obsidian_version }}_amd64.deb'
dest: '{{ development__download_cache_directory }}/obsidian-{{ development__obsidian_version }}-amd64.deb'
group: 'root'
mode: 0755
owner: 'root'
url: 'https://github.com/obsidianmd/obsidian-releases/releases/download/v{{ development__obsidian_version }}/obsidian_{{ development__obsidian_version }}_amd64.deb'
url: 'https://github.com/obsidianmd/obsidian-releases/releases/download/v{{ development__obsidian_version }}/obsidian-{{ development__obsidian_version }}-amd64.deb'

- name: 'Ensure Obsidian is installed'
ansible.builtin.apt:
deb: '{{ development__download_cache_directory }}/obsidian_{{ development__obsidian_version }}_amd64.deb'
deb: '{{ development__download_cache_directory }}/obsidian-{{ development__obsidian_version }}-amd64.deb'
state: 'present'

# Account for a bug where Obsidian's Debian package for v0.12.15 creates
Expand Down
6 changes: 3 additions & 3 deletions roles/golang/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

---
# A string containing a checksum used to verify the integrity the Go
# binary archive download "go1.22.4.linux-amd64.tar.gz". See also
# binary archive download "go1.22.5.linux-amd64.tar.gz". See also
# "golang__golang_version". Go binary archives and checksums are
# available at <https://go.dev/dl/>.
golang__golang_archive_checksum: 'sha256:ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d'
golang__golang_archive_checksum: 'sha256:904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0'

# A string containing the version of Go to install.
golang__golang_version: '1.22.4'
golang__golang_version: '1.22.5'


# The following variables will have host-specific and/or sensitive
Expand Down
4 changes: 2 additions & 2 deletions roles/nodejs/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# Node.js binary archive "node-v20.14.0-linux-x64.tar.xz". See also
# "nodejs__version". Node.js binary archives and checksums are
# available at <https://nodejs.org/en/download>.
nodejs__nodejs_archive_checksum: 'sha256:fedf8fa73b6f51c4ffcc5da8f86cd1ed381bc9dceae0829832c7d683a78b8e36'
nodejs__nodejs_archive_checksum: 'sha256:4f57f7828e6adb9f6bc77932f10e316cca68b0f160c82b21d9a2c7647c7f10bf'

# A string containing the version of Node.js to install.
nodejs__nodejs_version: '20.14.0'
nodejs__nodejs_version: '20.15.0'


# The following variables will have host-specific and/or sensitive
Expand Down

0 comments on commit a8079c9

Please sign in to comment.