Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .config/fish/aliases.fish
Original file line number Diff line number Diff line change
Expand Up @@ -196,15 +196,15 @@ end
# Renovate
function renovate
if ls ./.envrc
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.279.1 sh -c "curl -sfL https://direnv.net/install.sh | bash && direnv allow . && direnv exec . renovate $argv"
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.280.0 sh -c "curl -sfL https://direnv.net/install.sh | bash && direnv allow . && direnv exec . renovate $argv"
else
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.279.1 sh -c "renovate $argv"
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.280.0 sh -c "renovate $argv"
end
rm -rf renovate/
end

function renovate-config-validator
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.279.1 sh -c "renovate-config-validator $argv"
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:43.280.0 sh -c "renovate-config-validator $argv"
end

# todoist
Expand Down
4 changes: 2 additions & 2 deletions .config/zsh/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@ function l5d-setup() {
function renovate() {
set -x
args=$@
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:43.279.1 sh -c "curl -sfL https://direnv.net/install.sh | bash && direnv allow . && direnv exec . renovate $args"
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:43.280.0 sh -c "curl -sfL https://direnv.net/install.sh | bash && direnv allow . && direnv exec . renovate $args"
}

function renovate-config-validator() {
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:43.279.1 sh -c "renovate-config-validator $@"
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:43.280.0 sh -c "renovate-config-validator $@"
}

# Terraform
Expand Down