33 Commits

Author SHA1 Message Date
argoyle a1cc6fdfbb ci: update prepare_release to use git-cliff for CHANGELOG generation 2024-09-22 09:20:22 +02:00
Renovate 9c5ca3c78b chore(deps): update node.js to v22.9.0 2024-09-18 01:53:20 +00:00
Renovate 5d451d76a3 chore(deps): update node.js to v22.8.0 2024-09-03 22:52:57 +00:00
Renovate 6cfecc7149 chore(deps): update node.js to v22.7.0 2024-08-22 22:53:08 +00:00
Renovate b685e433c0 chore(deps): update node docker tag to v22.6.0 2024-08-06 22:51:54 +00:00
Renovate 841d4ecd1e chore(deps): update node.js to v22.5.1 2024-07-19 19:52:58 +00:00
Renovate e6d2f63fe7 chore(deps): update node.js to v22.5.0 2024-07-18 16:51:54 +00:00
Renovate e50b9ef1ed chore(deps): update node.js to v22.4.1 2024-07-09 16:51:56 +00:00
Renovate 0de279a8f1 chore(deps): update node.js to v22.4.0 2024-07-02 22:51:39 +00:00
Renovate 81577546c0 chore(deps): update node.js to v22.3.0 2024-06-12 01:52:58 +00:00
Renovate dac150019e chore(deps): update node.js to v22.2.0 2024-05-20 05:18:28 +00:00
argoyle 5175004d52 Merge branch 'update-ruby-dev-to-dockerfile' into 'main'
ci: add ruby-dev to Dockerfile for pre-commit installation.

See merge request unboundsoftware/pre-commit-node!10
2024-05-20 05:16:04 +00:00
argoyle 10839be374 ci: add ruby-dev to Dockerfile for pre-commit installation. 2024-05-20 07:13:23 +02:00
argoyle 9d66aaa796 Merge branch 'renovate/node-22.x' into 'main'
chore(deps): update node.js to v22.1.0

See merge request unboundsoftware/pre-commit-node!8
2024-05-03 05:01:13 +00:00
Renovate 11e1f81c87 chore(deps): update node.js to v22.1.0 2024-05-02 19:52:35 +00:00
argoyle 9688c766a4 Merge branch 'node-22' into 'main'
ci: update to Node 22

See merge request unboundsoftware/pre-commit-node!7
2024-05-02 14:25:19 +00:00
argoyle 7a103b4ed6 ci: update to Node 22 2024-05-02 16:23:40 +02:00
argoyle d776cd8756 Merge branch 'renovate/node-20.x' into 'main'
chore(deps): update node.js to v20.12.2

See merge request unboundsoftware/pre-commit-node!6
2024-04-12 11:38:56 +00:00
Renovate 19e78110ef chore(deps): update node.js to v20.12.2 2024-04-11 13:52:36 +00:00
argoyle c8e4579ac6 fix: add pipx bin-dir to PATH 2024-04-08 08:09:40 +02:00
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
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
argoyle 125084cab6 feat: upgrade to Node 18 2023-02-22 13:02:39 +01:00
argoyle 2c6ff89a47 ci: use Docker DinD version from variable 2023-02-09 21:55:35 +01:00
3 changed files with 22 additions and 11 deletions
+11 -8
View File
@@ -14,22 +14,25 @@ image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build: build:
stage: build stage: build
services: services:
- docker:dind - docker:${DOCKER_DIND_VERSION}
script: script:
- unset BUILDTOOLS_CONTENT - unset BUILDTOOLS_CONTENT
- build - build
- push - push
prepare_release: prepare_release:
image: node:18
stage: prepare stage: prepare
before_script: image:
- npm install -g conventional-changelog-cli name: orhunp/git-cliff:latest
entrypoint: [ "" ]
variables:
GIT_STRATEGY: clone # clone entire repo instead of reusing workspace
GIT_DEPTH: 0 # avoid shallow clone to give cliff all the info it needs
script: script:
- echo "DESCRIPTION=$(conventional-changelog -p conventionalcommits)" > variables.env - git-cliff --current > CHANGELOG.md
artifacts: artifacts:
reports: paths:
dotenv: variables.env - CHANGELOG.md
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
@@ -43,6 +46,6 @@ release:
- echo "Running release_job for $TAG" - echo "Running release_job for $TAG"
release: release:
tag_name: '$CI_COMMIT_TAG' tag_name: '$CI_COMMIT_TAG'
description: '$DESCRIPTION' description: ./CHANGELOG.md
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
+5 -3
View File
@@ -1,6 +1,8 @@
FROM node:16 FROM node:22.9.0
ENV PATH=${PATH}:/root/.local/bin
RUN apt update && \ RUN apt update && \
apt install -y python3 python3-pip ruby git && \ apt install -y python3 python3-pip ruby ruby-dev git pipx && \
rm -rf /var/lib/apt/lists/* && \ 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"
]
}