5 Commits

Author SHA1 Message Date
dependabot[bot]
4dcdbb50be build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-01 04:02:02 +01:00
Petra Baranski
07dde0c630 chore: update github templates 2025-10-05 15:44:00 +02:00
Petra Baranski
b2694f263d chore: fetch tags in the release job 2025-10-05 15:44:00 +02:00
dependabot[bot]
5f1f962e22 build(deps): bump actions/setup-python from 5 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-02 06:29:46 +02:00
dependabot[bot]
db875f74b8 build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-02 06:29:19 +02:00
6 changed files with 13 additions and 10 deletions

View File

@@ -37,7 +37,8 @@ body:
label: maddy version label: maddy version
description: What version of maddy are you using? description: What version of maddy are you using?
options: options:
- 1.5.0 (latest) - 1.6.0 (latest)
- 1.5.0
- 1.4.0 - 1.4.0
- 1.3.0 - 1.3.0
- 1.2.1 - 1.2.1

View File

@@ -37,7 +37,8 @@ body:
label: maddy version label: maddy version
description: What version of maddy are you using? description: What version of maddy are you using?
options: options:
- 1.5.0 (latest) - 1.6.0 (latest)
- 1.5.0
- 1.4.0 - 1.4.0
- 1.3.0 - 1.3.0
- 1.2.1 - 1.2.1

View File

@@ -11,7 +11,7 @@ jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: lukka/get-cmake@latest - uses: lukka/get-cmake@latest
with: with:
cmakeVersion: "~3.25.0" # <--= optional, use most recent 3.25.x version cmakeVersion: "~3.25.0" # <--= optional, use most recent 3.25.x version
@@ -28,6 +28,7 @@ jobs:
- name: Get current tag message - name: Get current tag message
id: tag-message id: tag-message
run: | run: |
git fetch --tags --force
TAG_NAME=${GITHUB_REF#refs/tags/} TAG_NAME=${GITHUB_REF#refs/tags/}
echo "TAG_NAME: $TAG_NAME" echo "TAG_NAME: $TAG_NAME"
TAG_MESSAGE=$(git tag -l --format='%(contents)' "$TAG_NAME") TAG_MESSAGE=$(git tag -l --format='%(contents)' "$TAG_NAME")

View File

@@ -11,10 +11,10 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v6
with: with:
python-version: '3.8' python-version: '3.8'

View File

@@ -9,7 +9,7 @@ jobs:
test-on-ubuntu: test-on-ubuntu:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: lukka/get-cmake@latest - uses: lukka/get-cmake@latest
with: with:
cmakeVersion: "~3.25.0" cmakeVersion: "~3.25.0"
@@ -36,7 +36,7 @@ jobs:
test-on-windows: test-on-windows:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: lukka/get-cmake@latest - uses: lukka/get-cmake@latest
with: with:
cmakeVersion: "~3.25.0" cmakeVersion: "~3.25.0"
@@ -54,7 +54,7 @@ jobs:
test-on-osx: test-on-osx:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- uses: lukka/get-cmake@latest - uses: lukka/get-cmake@latest
with: with:
cmakeVersion: "~3.25.0" cmakeVersion: "~3.25.0"

View File

@@ -16,10 +16,10 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v6
with: with:
python-version: '3.11' python-version: '3.11'