9 Commits

Author SHA1 Message Date
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
argoyle 712375c502 build(deps): bump node from 18 to 20
Bumps node from 18 to 20.
2023-06-08 16:04:56 +02:00
argoyle 88bfb3caeb ci: add dependabot config 2023-06-08 13:31:56 +02:00
3 changed files with 14 additions and 8 deletions
+5 -5
View File
@@ -21,15 +21,15 @@ build:
- push
prepare_release:
image: node:18
image: node:20
stage: prepare
before_script:
- npm install -g conventional-changelog-cli
script:
- echo "DESCRIPTION=$(conventional-changelog -p conventionalcommits)" > variables.env
- conventional-changelog -p conventionalcommits > ./release.description
artifacts:
reports:
dotenv: variables.env
paths:
- release.description
rules:
- if: $CI_COMMIT_TAG
@@ -43,6 +43,6 @@ release:
- echo "Running release_job for $TAG"
release:
tag_name: '$CI_COMMIT_TAG'
description: '$DESCRIPTION'
description: ./release.description
rules:
- if: $CI_COMMIT_TAG
+3 -3
View File
@@ -1,6 +1,6 @@
FROM node:18
FROM node:20.9.0
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"
]
}