4 Commits

Author SHA1 Message Date
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 19 additions and 6 deletions
+5 -5
View File
@@ -14,7 +14,7 @@ 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
@@ -26,10 +26,10 @@ prepare_release:
before_script: before_script:
- npm install -g conventional-changelog-cli - npm install -g conventional-changelog-cli
script: script:
- echo "DESCRIPTION=$(conventional-changelog -p conventionalcommits)" > variables.env - conventional-changelog -p conventionalcommits > ./release.description
artifacts: artifacts:
reports: paths:
dotenv: variables.env - release.description
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
@@ -43,6 +43,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: ./release.description
rules: rules:
- if: $CI_COMMIT_TAG - if: $CI_COMMIT_TAG
+13
View File
@@ -0,0 +1,13 @@
# 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
+1 -1
View File
@@ -1,4 +1,4 @@
FROM node:16 FROM node:20
RUN apt update && \ RUN apt update && \
apt install -y python3 python3-pip ruby git && \ apt install -y python3 python3-pip ruby git && \