Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Check Action distribution
name: Check action distribution

on:
push:
branches:
Expand All @@ -16,7 +17,7 @@ permissions:

jobs:
check-dist:
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CodeQL Advanced
name: CodeQL

on:
push:
Expand All @@ -11,7 +11,7 @@ on:
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
runs-on: ubuntu-slim
permissions:
# required for all workflows
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0
id: release-drafter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
needs:
- test-installer-scripts
- integration-tests
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
Expand Down
48 changes: 48 additions & 0 deletions .github/workflows/update-version-manifest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Update version manifest

on:
workflow_dispatch:
schedule:
- cron: "0 4 * * *"
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions:
contents: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
ref: known-versions
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 20
- name: Install latest version of uv
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
with:
enable-cache: true
save-cache: ${{ github.ref == 'refs/heads/main' }}
- name: Update version manifest
id: update-version-manifest
run: node dist/update-version-manifest/index.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Format version-manifest.json
run: uvx prek --files version-manifest.json || true
- name: Create pull request
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
commit-message: 👷 Update version manifest
title: 👷 Update version manifest for ${{ steps.update-version-manifest.outputs.latest-tag }}
body: This PR updates the version manifest to include `${{ steps.update-version-manifest.outputs.latest-tag }}`.
base: known-versions
labels: "enhancement"
branch: update-version-manifest
delete-branch: true
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This project adheres to [Semantic Versioning], with the exception that minor rel

## [Unreleased]

### Added

- ✨ Add version manifest ([#79]) ([**@denialhaag**])

## [1.1.0] - 2026-01-07

### Added
Expand Down Expand Up @@ -57,6 +61,7 @@ _This is the initial release of the `setup-mlir` project._

<!-- PR links -->

[#79]: https://github.com/munich-quantum-software/setup-mlir/pull/79
[#61]: https://github.com/munich-quantum-software/setup-mlir/pull/61
[#51]: https://github.com/munich-quantum-software/setup-mlir/pull/51
[#49]: https://github.com/munich-quantum-software/setup-mlir/pull/49
Expand Down
Loading