9 Commits

Author SHA1 Message Date
argoyle 86c8c7659a Merge branch 'renovate/node-20.x' into 'main'
chore(deps): update node.js to v20.12.1

See merge request unboundsoftware/pre-commit-node!5
2024-04-07 16:43:54 +00:00
Renovate e9dc641b68 chore(deps): update node.js to v20.12.1 2024-04-06 16:53:21 +00:00
argoyle caed076db6 ci: update to node 20.9.0 2024-04-06 16:48:11 +02:00
argoyle 8d5df03ad5 ci: remove Dependabot config 2024-02-26 09:17:45 +01:00
argoyle 90eba865cf Merge branch 'renovate/node-20.x' into 'main'
chore(deps): update node.js to v20

See merge request unboundsoftware/pre-commit-node!4
2024-02-24 11:45:16 +00:00
Renovate c75e88a6f3 chore(deps): update node.js to v20 2024-02-24 00:51:22 +00:00
argoyle 9fb6ded315 Merge branch 'renovate/configure' into 'main'
chore: Configure Renovate

See merge request unboundsoftware/pre-commit-node!3
2024-02-24 00:31:48 +00:00
Renovate 28b10a5452 Add renovate.json 2024-02-24 01:26:48 +01:00
argoyle 342e639b24 fix: install pre-commit with pipx 2024-02-24 01:26:40 +01:00
4 changed files with 10 additions and 17 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ build:
- push
prepare_release:
image: node:18
image: node:20
stage: prepare
before_script:
- npm install -g conventional-changelog-cli
-13
View File
@@ -1,13 +0,0 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 20
rebase-strategy: none
+3 -3
View File
@@ -1,6 +1,6 @@
FROM node:20
FROM node:20.12.1
RUN apt update && \
apt install -y python3 python3-pip ruby git && \
apt install -y python3 python3-pip ruby git pipx && \
rm -rf /var/lib/apt/lists/* && \
pip3 install pre-commit
pipx install pre-commit
+6
View File
@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}