diff --git a/src/gh-release/devcontainer-feature.json b/src/gh-release/devcontainer-feature.json index 16d0e986b..eb79edb2c 100644 --- a/src/gh-release/devcontainer-feature.json +++ b/src/gh-release/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "gh-release", - "version": "1.0.25", + "version": "1.0.26", "name": "Github Release", "documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/gh-release", "description": "Github Release feature will download, extract and add to path a release binary from a given repo", @@ -77,4 +77,4 @@ } }, "installsAfter": [] -} \ No newline at end of file +} diff --git a/src/gh-release/install.sh b/src/gh-release/install.sh index ccf8c44c5..bcc5de880 100755 --- a/src/gh-release/install.sh +++ b/src/gh-release/install.sh @@ -8,7 +8,7 @@ set -e # `ensure_nanolayer` is a bash function that will find any existing nanolayer installations, # and if missing - will download a temporary copy that automatically get deleted at the end # of the script -ensure_nanolayer nanolayer_location "v0.5.6" +ensure_nanolayer nanolayer_location "v0.5.7" diff --git a/src/gh-release/library_scripts.sh b/src/gh-release/library_scripts.sh index 9e1072eca..baa1a2d1e 100644 --- a/src/gh-release/library_scripts.sh +++ b/src/gh-release/library_scripts.sh @@ -151,7 +151,7 @@ ensure_nanolayer() { tar_filename=nanolayer-"$(uname -m)"-unknown-linux-$clib_type.tgz # clean download will minimize leftover in case a downloaderlike wget or curl need to be installed - clean_download https://github.com/devcontainers-extra/nanolayer/releases/download/$required_version/$tar_filename $tmp_dir/$tar_filename + clean_download https://github.com/jcnix/nanolayer/releases/download/$required_version/$tar_filename $tmp_dir/$tar_filename tar xfzv $tmp_dir/$tar_filename -C "$tmp_dir" chmod a+x $tmp_dir/nanolayer diff --git a/src/ripgrep/devcontainer-feature.json b/src/ripgrep/devcontainer-feature.json index 0a101a48e..a7649fb9c 100644 --- a/src/ripgrep/devcontainer-feature.json +++ b/src/ripgrep/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "ripgrep", - "version": "1.0.14", + "version": "1.0.16", "name": "ripgrep (via Github Releases)", "documentationURL": "http://github.com/devcontainers-extra/features/tree/main/src/ripgrep", "description": "ripgrep recursively searches directories for a regex pattern while respecting your gitignore.", @@ -17,4 +17,4 @@ "installsAfter": [ "ghcr.io/devcontainers-extra/features/gh-release" ] -} \ No newline at end of file +} diff --git a/src/ripgrep/install.sh b/src/ripgrep/install.sh index 03eec5715..6c0c2e493 100755 --- a/src/ripgrep/install.sh +++ b/src/ripgrep/install.sh @@ -8,13 +8,13 @@ set -e # `ensure_nanolayer` is a bash function that will find any existing nanolayer installations, # and if missing - will download a temporary copy that automatically get deleted at the end # of the script -ensure_nanolayer nanolayer_location "v0.5.4" +ensure_nanolayer nanolayer_location "v0.5.7" $nanolayer_location \ install \ devcontainer-feature \ - "ghcr.io/devcontainers-extra/features/gh-release:1.0.25" \ + "ghcr.io/jcnix/features/gh-release:1.0.26" \ --option repo='BurntSushi/ripgrep' --option binaryNames='rg' --option version="$VERSION" diff --git a/src/ripgrep/library_scripts.sh b/src/ripgrep/library_scripts.sh index 9e1072eca..baa1a2d1e 100644 --- a/src/ripgrep/library_scripts.sh +++ b/src/ripgrep/library_scripts.sh @@ -151,7 +151,7 @@ ensure_nanolayer() { tar_filename=nanolayer-"$(uname -m)"-unknown-linux-$clib_type.tgz # clean download will minimize leftover in case a downloaderlike wget or curl need to be installed - clean_download https://github.com/devcontainers-extra/nanolayer/releases/download/$required_version/$tar_filename $tmp_dir/$tar_filename + clean_download https://github.com/jcnix/nanolayer/releases/download/$required_version/$tar_filename $tmp_dir/$tar_filename tar xfzv $tmp_dir/$tar_filename -C "$tmp_dir" chmod a+x $tmp_dir/nanolayer