Skip to content

Commit

Permalink
chore(deps): update renovate/renovate docker tag to v39.42.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 30, 2024
1 parent 21ca4d1 commit bc9d39e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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):/tmp renovate/renovate:39.42.0 sh -c "curl -sfL https://direnv.net/install.sh | bash && cd /tmp && direnv allow . && direnv exec . renovate $argv"
docker run --rm -it -v (pwd):/tmp renovate/renovate:39.42.1 sh -c "curl -sfL https://direnv.net/install.sh | bash && cd /tmp && direnv allow . && direnv exec . renovate $argv"
else
docker run --rm -it -v (pwd):/tmp renovate/renovate:39.42.0 sh -c "renovate $argv"
docker run --rm -it -v (pwd):/tmp renovate/renovate:39.42.1 sh -c "renovate $argv"
end
rm -rf renovate/
end

function renovate-config-validator
docker run --rm -it -v (pwd):/tmp renovate/renovate:39.42.0 sh -c "cd /tmp && renovate-config-validator"
docker run --rm -it -v (pwd):/tmp renovate/renovate:39.42.1 sh -c "cd /tmp && 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):/tmp renovate/renovate:39.42.0 sh -c "git config --global --add safe.directory /tmp/renovate/repos/github/$1 && curl -sfL https://direnv.net/install.sh | bash && cd /tmp && direnv allow . && direnv exec . renovate $args"
docker run --rm -it -v $(pwd):/tmp renovate/renovate:39.42.1 sh -c "git config --global --add safe.directory /tmp/renovate/repos/github/$1 && curl -sfL https://direnv.net/install.sh | bash && cd /tmp && direnv allow . && direnv exec . renovate $args"
}

function renovate-config-validator() {
docker run --rm -it -v $(pwd):/tmp renovate/renovate:39.42.0 sh -c "cd /tmp && renovate-config-validator"
docker run --rm -it -v $(pwd):/tmp renovate/renovate:39.42.1 sh -c "cd /tmp && renovate-config-validator"
}

# Terraform
Expand Down

0 comments on commit bc9d39e

Please sign in to comment.