Skip to content

Commit df9c378

Browse files
authored
Merge branch 'main' into update_ci_example
2 parents 585a454 + 1a26131 commit df9c378

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM $BASE_IMAGE AS builder
44

55
# Gems have to be ARG and ENV because they are used as reference in the Gemfile
66
ARG RUBYGEM_PUPPET
7-
ENV RUBYGEM_PUPPET ${RUBYGEM_PUPPET:-8.8.1}
7+
ENV RUBYGEM_PUPPET=${RUBYGEM_PUPPET:-8.8.1}
88

99
ARG RUBYGEM_FACTER
1010
ENV RUBYGEM_FACTER=${RUBYGEM_FACTER:-4.8.0}
@@ -76,7 +76,7 @@ LABEL org.label-schema.maintainer="Voxpupuli Team <voxpupuli@groups.io>" \
7676
ARG APK_JQ=1.7.1-r0
7777
ARG APK_YAMLLINT=1.35.1-r1
7878
ARG APK_GIT=2.45.2-r0
79-
ARG APK_CURL=8.10.1-r0
79+
ARG APK_CURL=8.11.0-r2
8080

8181
RUN apk update \
8282
&& apk upgrade \

RELEASE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ Your attention to this specific branch naming convention is essential for accura
1010
```shell
1111
export RELEASE_VERSION="X.Y.Z"
1212
git switch main
13-
git pull -r
13+
git pull --rebase
1414
git switch -c release-v$RELEASE_VERSION
1515

1616
bundle config set --local path vendor/bundle
1717
bundle config set --local with 'release'
1818
bundle install
1919

2020
CHANGELOG_GITHUB_TOKEN="token_MC_tokenface" bundle exec rake changelog
21-
git commit -am "Release v${RELEASE_VERSION}"
22-
git push origin release-v$RELEASE_VERSION
21+
22+
git commit --all --message "Release v${RELEASE_VERSION}"
23+
git push --set-upstream origin HEAD
2324
```
2425

2526
Then open a PR, discuss and merge.
@@ -28,7 +29,7 @@ Then open a PR, discuss and merge.
2829

2930
```shell
3031
git switch main
31-
git pull -r
32+
git pull --rebase
3233
git tag v$RELEASE_VERSION -m "v$RELEASE_VERSION"
3334
git push --tags
3435
```

build_versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"apk_jq": "1.7.1-r0",
3939
"apk_yamllint": "1.35.1-r1",
4040
"apk_git": "2.45.2-r0",
41-
"apk_curl": "8.10.1-r0"
41+
"apk_curl": "8.11.0-r2"
4242
}
4343
]
4444
}

0 commit comments

Comments
 (0)