Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Release
on:
push:
tags: [ 'v*.*.*' ]

Check failure on line 4 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Yaml Lint on Changed yaml files

4:21 [brackets] too many spaces inside brackets

Check failure on line 4 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Yaml Lint on Changed yaml files

4:12 [brackets] too many spaces inside brackets
jobs:
release-fedora:
name: Release on Fedora Latest (Container)
Expand All @@ -10,7 +10,7 @@
image: fedora:latest
steps:
- name: Install Deps
run: dnf install -y cmake ninja-build openscap-utils python3-pip python3-devel gcc-c++ ansible ansible-lint libxslt

Check failure on line 13 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Yaml Lint on Changed yaml files

13:100 [line-length] line too long (123 > 99 characters)
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
- name: Install python deps
Expand Down Expand Up @@ -39,11 +39,11 @@
GITHUB_REF: ${{ github.ref }}
- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@bcae7115752d4ed746ff92feb666574428a79415 # v4
uses: mikepenz/release-changelog-builder-action@348e88fab4c37338b1e803ceb2d4a7a5db6c0833 # v4

Check failure on line 42 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Yaml Lint on Changed yaml files

42:100 [line-length] line too long (101 > 99 characters)
with:
configuration: .github/workflows/release-changelog.json
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 46 in .github/workflows/release.yaml

View workflow job for this annotation

GitHub Actions / Yaml Lint on Changed yaml files

46:10 [indentation] wrong indentation: expected 10 but found 9
- name: Release
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
with:
Expand Down
Loading