Skip to content

Update rhysd/action-setup-vim action to v1.6.0#14

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rhysd-action-setup-vim-1.x
Open

Update rhysd/action-setup-vim action to v1.6.0#14
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/rhysd-action-setup-vim-1.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 16, 2023

This PR contains the following updates:

Package Type Update Change
rhysd/action-setup-vim action minor v1.2.13v1.6.0

Release Notes

rhysd/action-setup-vim (rhysd/action-setup-vim)

v1.6.0

Compare Source

  • Add new vim-dir output which stores the $VIM directory absolute path of the installation. This output is useful to locate where the Vim/Neovim is installed by the following steps. Here is an example of setting the installation-specific vimrc configuration:
    - uses: rhysd/action-setup-vim@v1
      id: vim
    - name: Setup vimrc specific to the Vim installation
      run: |
        cp vimrc_for_ci.vim '${{ vim.vim-dir }}/vimrc'
  • Fix the Vim installation directory structure on Windows. It did not conform the standard directory layout which Vim assumes. Previously the runtime directory was wrongly squashed. The paths before/after this release when installing stable version are:
    • Previous wrong path: ~/vim-stable/vim.exe
    • New correct path: ~/vim-stable/vim91/vim.exe
  • Clean up temporary directories created by this action after installation completes. Temporary directories containing downloaded assets were not removed previously but they could cause troubles when installing multiple Vim/Neovim instances.
  • Report logs via core.info() instead of directly calling console.log().

[Changes][v1.6.0]

v1.5.1

Compare Source

  • Fix installing stable Vim on macos-15-intel runner. It was broken again after v1.4.5 release due to the change in the upstream runner. (#​52)
  • Update @actions/io to v2.0.0 for better Node.js v24 support.

[Changes][v1.5.1]

v1.5.0

Compare Source

  • Support arm64 native binaries on windows-11-arm runner.
    • When an arm64 binary is missing in the release due to some reasons (e.g. build error), it falls back to x86_64 binary so that your workflow can continue. In this case the x86_64 binary is executed via x86 emulation.
    • Neovim only supports arm64 binaries on nightly builds for now.
  • Migrate the action runtime from node20 to node24. This change only affects users running this action on self-hosted runners.
  • Fix the validation for installed executables was not sufficient on Windows.

[Changes][v1.5.0]

v1.4.5

Compare Source

  • Fix installing stable Vim on macos-15-intel runner. It was broken again after v1.4.5 release due to the change in the upstream runner. (#​52)
  • Update @actions/io to v2.0.0 for better Node.js v24 support.

[Changes][v1.5.1]

v1.4.4

Compare Source

  • Fix stable Vim installation fails on macos-15-intel runner due to the version conflict in python Homebrew package. (#​52)
  • Fix HTTPS proxy is not used when accessing GitHub API via Octokit client even if https_proxy environment variable is set.
  • Fix using a deprecated API in node-fetch package.

[Changes][v1.4.4]

v1.4.3

Compare Source

  • Use HTTPS proxy looking at environment variables such as https_proxy, no_proxy, all_proxy when fetching assets. (#​50, thanks @​xieyonn)
  • Implementation migrated from CommonJS to ES Modules. This should not affect the behavior of this action.
  • Reduce amount of log output when installing stable Vim on Linux.
  • Update dependencies including @actions/github.

[Changes][v1.4.3]

v1.4.2

Compare Source

  • Fix the version of stable Neovim or Vim may be outdated on macOS by updating formulae before running brew install. By this fix, the new version of Neovim which was released 2 days ago is now correctly installed. (#​49)
  • Add a warning message with useful information when executing ./configure fails to build older versions of Vim.
  • Update dependencies including some security fixes in @octokit/* packages.

[Changes][v1.4.2]

v1.4.1

Compare Source

  • Fix arm32 Linux (self-hosted runner) is rejected on checking the CPU architecture before installation.
  • Add 'Supported platforms' table to the readme document to easily know which platforms are supported for Vim/Neovim.

[Changes][v1.4.1]

v1.4.0

Compare Source

  • Support for Linux arm64 hosted runners. (#​39)
    • For Neovim, Linux arm64 is supported since v0.10.4. v0.10.3 or earlier versions are not supported because of no prebuilt Linux arm64 binaries for the versions.
  • Fix installing Neovim after the v0.10.4 release. The installation was broken because the asset file name has been changed. (#​42, #​43, thanks @​falcucci and @​danarnold for making the patches at #​40 and #​41 respectively)

[Changes][v1.4.0]

v1.3.5

Compare Source

  • Fix vim command hangs on Windows after Vim 9.1.0631. (#​37)
  • Update the dependencies to the latest. This includes small security fixes.

[Changes][v1.3.5]

v1.3.4

Compare Source

  • Support Neovim v0.10 new asset file names for macOS. (#​30)
    • Until v0.9.5, Neovim provided a single universal executable. From v0.10.0, Neovim now provides separate two executables for arm64 and x86_64. action-setup-vim downloads a proper asset file looking at the current system's architecture.

[Changes][v1.3.4]

v1.3.3

Compare Source

  • Remove the support for Ubuntu 18.04, which was removed from GitHub-hosted runners more than one year ago.
  • Improve adding bin directory to the $PATH environment variable by using core.addPath rather than modifying the environment variable directly. (#​33, thanks @​ObserverOfTime)
  • Update dependencies including some security patches.

[Changes][v1.3.3]

v1.3.2

Compare Source

  • Fix the nightly Neovim installation was broken due to neovim/neovim#28000. (#​30, thanks @​linrongbin16)
    • Neovim now provides neovim-macos-arm64.tar.gz (for Apple Silicon) and neovim-macos-x86_64.tar.gz (for Intel Mac) separately rather than the single neovim-macos.tar.gz. This change will be applied to the next stable version.
  • Update npm dependencies to the latest. This update includes some small security fixes.
  • Fix an incorrect OS version was reported in debug message on Ubuntu.

[Changes][v1.3.2]

v1.3.1

Compare Source

[Changes][v1.3.1]

v1.3.0

Compare Source

  • configure-args input was added to customize build configurations on building Vim from source. This input is useful to change ./configure arguments to enable/disable some features of Vim. For example, when you're facing some issue on generating translation files (this sometimes happens when building older Vim), disabling the native language support would be able to avoid the issue. (#​27)
    - uses: rhysd/action-setup-vim@v1
      with:
        version: 8.0.0000
        configure-args: |
          --with-features=huge --enable-fail-if-missing --disable-nls
  • Update the action runtime to node20. Now this action is run with Node.js v20.
  • Update all dependencies to the latest including @actions/github v6.0.0 and some security fixes.

[Changes][v1.3.0]

v1.2.15

Compare Source

  • Show less output on unarchiving downloaded assets with unzip -q to reduce amount of logs. When debugging is enabled, -q is not added and unzip shows all retrieved file paths for debugging. (#​25)
  • Upgrade the lock file version from v2 to v3, which largely reduces size of package-lock.json.
  • Update dependencies.

[Changes][v1.2.15]

v1.2.14

Compare Source

  • Improve warning message when trying to build Vim older than 8.2.1119 on macos-latest or macos-12 runner since the build would fail. macos-11 runner should be used instead.
    • Vim older than 8.2.1119 can be built with Xcode 11 or earlier only. macos-12 runner does not include Xcode 11 by default. And now macos-latest label points to macos-12 runner. So building Vim 8.2.1119 or older on macos-latest would fail.
  • Update dependencies to fix deprecation warning from uuid package

[Changes][v1.2.14]


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@yegor256
Copy link
Member

@rultor please, try to merge

@rultor
Copy link

rultor commented Mar 16, 2023

@rultor please, try to merge

@yegor256 OK, I'll try to merge now. You can check the progress of the merge here

@rultor
Copy link

rultor commented Mar 16, 2023

@rultor please, try to merge

@renovate[bot] @yegor256 Oops, I failed. You can see the full log here (spent 1min)

+ [[ -z /usr/local/rvm/tmp/105* ]]
+ [[ -d /usr/local/rvm/tmp/105* ]]
+ [[ -f /usr/local/rvm/tmp/105* ]]
+ [[ -L /usr/local/rvm/tmp/105* ]]
+ rvm_debug '__rvm_rm_rf already gone: /usr/local/rvm/tmp/105*'
+ ((  0  ))
+ return 0
+ true
+ true
+ export __rvm_env_loaded
+ : __rvm_env_loaded:1:
+ : __rvm_env_loaded:1:
+ : __rvm_env_loaded:0:
+ [[ -z /usr/local/rvm/tmp ]]
+ ((  __rvm_env_loaded > 0  ))
+ [[ -n 5.0.17(1)-release ]]
+ trap - EXIT HUP INT QUIT TERM
+ [[ -n '' ]]
+ ((  rvm_bash_nounset == 1  ))
+ unset rvm_bash_nounset
+ [[ -n '' ]]
+ [[ -n 0002 ]]
+ umask 0002
+ unset rvm_stored_umask
+ builtin command -v __rvm_cleanup_download
+ [[ '' == \1 ]]
+ __variables_definition unset
+ typeset -a __variables_list __array_list
+ typeset __method
+ __method=unset
+ __variables_list=(rvm_head_flag rvm_ruby_selected_flag rvm_user_install_flag rvm_path_flag rvm_cron_flag rvm_static_flag rvm_default_flag rvm_loaded_flag rvm_llvm_flag rvm_skip_autoreconf_flag rvm_dynamic_extensions_flag rvm_18_flag rvm_19_flag rvm_20_flag rvm_21_flag rvm_force_autoconf_flag rvm_dump_environment_flag rvm_curl_flags rvm_rubygems_version rvm_verbose_flag rvm_debug_flag rvm_trace_flag __array_start rvm_skip_pristine_flag rvm_create_flag rvm_remove_flag rvm_movable_flag rvm_archive_flag rvm_gemdir_flag rvm_reload_flag rvm_auto_reload_flag rvm_disable_binary_flag rvm_ignore_gemsets_flag rvm_skip_gemsets_flag rvm_install_on_use_flag rvm_remote_flag rvm_verify_downloads_flag rvm_skip_openssl_flag rvm_gems_cache_path rvm_gems_path rvm_man_path rvm_ruby_gem_path rvm_ruby_log_path rvm_gems_cache_path rvm_archives_path rvm_docs_path rvm_environments_path rvm_examples_path rvm_gems_path rvm_gemsets_path rvm_help_path rvm_hooks_path rvm_lib_path rvm_log_path rvm_patches_path rvm_repos_path rvm_rubies_path rvm_scripts_path rvm_src_path rvm_tmp_path rvm_user_path rvm_usr_path rvm_wrappers_path rvm_stored_errexit rvm_ruby_strings rvm_ruby_binary rvm_ruby_gem_home rvm_ruby_home rvm_ruby_interpreter rvm_ruby_irbrc rvm_ruby_major_version rvm_ruby_minor_version rvm_ruby_package_name rvm_ruby_patch_level rvm_ruby_release_version rvm_ruby_repo_url rvm_ruby_repo_branch rvm_ruby_revision rvm_ruby_tag rvm_ruby_sha rvm_ruby_repo_tag rvm_ruby_version rvm_ruby_package_file rvm_ruby_name rvm_ruby_name rvm_ruby_args rvm_ruby_user_tag rvm_ruby_patch detected_rvm_ruby_name __rvm_env_loaded next_token rvm_error_message rvm_gemset_name rvm_parse_break rvm_token rvm_action rvm_export_args rvm_gemset_separator rvm_expanding_aliases rvm_tar_command rvm_tar_options rvm_patch_original_pwd rvm_project_rvmrc rvm_archive_extension rvm_autoinstall_bundler_flag rvm_codesign_identity rvm_expected_gemset_name rvm_without_gems rvm_with_gems rvm_with_default_gems rvm_ignore_dotfiles_flag rvm_fuzzy_flag rvm_autolibs_flag rvm_autolibs_flag_number rvm_autolibs_flag_runner rvm_quiet_curl_flag rvm_max_time_flag rvm_error_clr rvm_warn_clr rvm_debug_clr rvm_notify_clr rvm_code_clr rvm_comment_clr rvm_reset_clr rvm_error_color rvm_warn_color rvm_debug_color rvm_notify_color rvm_code_color rvm_comment_color rvm_reset_color rvm_log_timestamp rvm_log_filesystem rvm_log_namelen rvm_show_log_lines_on_error)
+ __array_list=(rvm_patch_names rvm_ree_options rvm_autoconf_flags rvm_architectures)
+ case "${__method}" in
+ unset rvm_patch_names rvm_ree_options rvm_autoconf_flags rvm_architectures
+ unset rvm_head_flag rvm_ruby_selected_flag rvm_user_install_flag rvm_path_flag rvm_cron_flag rvm_static_flag rvm_default_flag rvm_loaded_flag rvm_llvm_flag rvm_skip_autoreconf_flag rvm_dynamic_extensions_flag rvm_18_flag rvm_19_flag rvm_20_flag rvm_21_flag rvm_force_autoconf_flag rvm_dump_environment_flag rvm_curl_flags rvm_rubygems_version rvm_verbose_flag rvm_debug_flag rvm_trace_flag __array_start rvm_skip_pristine_flag rvm_create_flag rvm_remove_flag rvm_movable_flag rvm_archive_flag rvm_gemdir_flag rvm_reload_flag rvm_auto_reload_flag rvm_disable_binary_flag rvm_ignore_gemsets_flag rvm_skip_gemsets_flag rvm_install_on_use_flag rvm_remote_flag rvm_verify_downloads_flag rvm_skip_openssl_flag rvm_gems_cache_path rvm_gems_path rvm_man_path rvm_ruby_gem_path rvm_ruby_log_path rvm_gems_cache_path rvm_archives_path rvm_docs_path rvm_environments_path rvm_examples_path rvm_gems_path rvm_gemsets_path rvm_help_path rvm_hooks_path rvm_lib_path rvm_log_path rvm_patches_path rvm_repos_path rvm_rubies_path rvm_scripts_path rvm_src_path rvm_tmp_path rvm_user_path rvm_usr_path rvm_wrappers_path rvm_stored_errexit rvm_ruby_strings rvm_ruby_binary rvm_ruby_gem_home rvm_ruby_home rvm_ruby_interpreter rvm_ruby_irbrc rvm_ruby_major_version rvm_ruby_minor_version rvm_ruby_package_name rvm_ruby_patch_level rvm_ruby_release_version rvm_ruby_repo_url rvm_ruby_repo_branch rvm_ruby_revision rvm_ruby_tag rvm_ruby_sha rvm_ruby_repo_tag rvm_ruby_version rvm_ruby_package_file rvm_ruby_name rvm_ruby_name rvm_ruby_args rvm_ruby_user_tag rvm_ruby_patch detected_rvm_ruby_name __rvm_env_loaded next_token rvm_error_message rvm_gemset_name rvm_parse_break rvm_token rvm_action rvm_export_args rvm_gemset_separator rvm_expanding_aliases rvm_tar_command rvm_tar_options rvm_patch_original_pwd rvm_project_rvmrc rvm_archive_extension rvm_autoinstall_bundler_flag rvm_codesign_identity rvm_expected_gemset_name rvm_without_gems rvm_with_gems rvm_with_default_gems rvm_ignore_dotfiles_flag rvm_fuzzy_flag rvm_autolibs_flag rvm_autolibs_flag_number rvm_autolibs_flag_runner rvm_quiet_curl_flag rvm_max_time_flag rvm_error_clr rvm_warn_clr rvm_debug_clr rvm_notify_clr rvm_code_clr rvm_comment_clr rvm_reset_clr rvm_error_color rvm_warn_color rvm_debug_color rvm_notify_color rvm_code_color rvm_comment_color rvm_reset_color rvm_log_timestamp rvm_log_filesystem rvm_log_namelen rvm_show_log_lines_on_error
+ [[ -n 5.0.17(1)-release ]]
+ export -fn __rvm_select_version_variables __rvm_ruby_string_parse_ __rvm_rm_rf_verbose __rvm_parse_args __rvm_ruby_string_find __rvm_file_load_env __rvm_remove_without_gems
+ unset _system_arch _system_name _system_type _system_version
+ return 0
+ return 0
+ true
+ export head=git@github.com:objectionary/eo-vim.git
+ head=git@github.com:objectionary/eo-vim.git
+ export pull_id=14
+ pull_id=14
+ export fork=git@github.com:objectionary/eo-vim.git
+ fork=git@github.com:objectionary/eo-vim.git
+ export fork_branch=renovate/rhysd-action-setup-vim-1.x
+ fork_branch=renovate/rhysd-action-setup-vim-1.x
+ export head_branch=master
+ head_branch=master
+ export 'pull_title=Update rhysd/action-setup-vim action to v1.2.15'
+ pull_title='Update rhysd/action-setup-vim action to v1.2.15'
+ export author=yegor256
+ author=yegor256
+ echo It is not configured yet
It is not configured yet
+ exit -1
container 3fb5a58ebbe4c4a2f8e5626e8319eb7f4956318dd0c9fe944f3d2d3e919509b7 is dead
Thu 16 Mar 2023 03:34:19 PM CET

@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.2.15 Update rhysd/action-setup-vim action to v1.3.0 Oct 15, 2023
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 28f1e82 to f8057a3 Compare October 15, 2023 17:40
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.0 Update rhysd/action-setup-vim action to v1.3.1 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from f8057a3 to 6e043d0 Compare January 31, 2024 04:54
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.1 Update rhysd/action-setup-vim action to v1.3.2 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 6e043d0 to a3823fd Compare March 29, 2024 18:34
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.2 Update rhysd/action-setup-vim action to v1.3.3 May 7, 2024
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from a3823fd to f524004 Compare May 7, 2024 20:04
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from f524004 to b3f7e6e Compare May 17, 2024 01:46
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.3 Update rhysd/action-setup-vim action to v1.3.4 May 17, 2024
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from b3f7e6e to 6b559b1 Compare July 28, 2024 16:51
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.4 Update rhysd/action-setup-vim action to v1.3.5 Jul 28, 2024
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 6b559b1 to 64652d4 Compare February 1, 2025 21:04
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.3.5 Update rhysd/action-setup-vim action to v1.4.1 Feb 1, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 64652d4 to 7321975 Compare March 28, 2025 16:37
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.4.1 Update rhysd/action-setup-vim action to v1.4.2 Mar 28, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 7321975 to 2113fc0 Compare September 7, 2025 17:57
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.4.2 Update rhysd/action-setup-vim action to v1.4.3 Sep 7, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 2113fc0 to 33d4d1f Compare October 12, 2025 13:01
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.4.3 Update rhysd/action-setup-vim action to v1.4.5 Oct 12, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 33d4d1f to 950f4e2 Compare October 26, 2025 12:29
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.4.5 Update rhysd/action-setup-vim action to v1.5.0 Oct 26, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from 950f4e2 to c38b1b2 Compare November 2, 2025 10:05
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.5.0 Update rhysd/action-setup-vim action to v1.5.1 Nov 2, 2025
@renovate renovate bot force-pushed the renovate/rhysd-action-setup-vim-1.x branch from c38b1b2 to d8452b0 Compare November 9, 2025 16:38
@renovate renovate bot changed the title Update rhysd/action-setup-vim action to v1.5.1 Update rhysd/action-setup-vim action to v1.6.0 Nov 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants