Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update renovate/renovate docker tag to v39.83.4 #1452

Merged
merged 1 commit into from
Dec 27, 2024
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 @@ -198,15 +198,15 @@ end
# Renovate
function renovate
if ls ./.envrc
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:39.83.3 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:39.83.4 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:39.83.3 sh -c "renovate $argv"
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:39.83.4 sh -c "renovate $argv"
end
rm -rf renovate/
end

function renovate-config-validator
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:39.83.3 sh -c "renovate-config-validator"
docker run --rm -it -v (pwd):/usr/src/app renovate/renovate:39.83.4 sh -c "renovate-config-validator"
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 @@ -116,11 +116,11 @@ function l5d-setup() {
function renovate() {
set -x
args=$@
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:39.83.3 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:39.83.4 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:39.83.3 sh -c "renovate-config-validator"
docker run --rm -it -v $(pwd):/usr/src/app renovate/renovate:39.83.4 sh -c "renovate-config-validator"
}

# Terraform
Expand Down
Loading