Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/actions/checkout-with-stable-pkgs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
using: "composite"
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-circular-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-entangled-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

# We use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/check-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ jobs:
steps:

- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4

- name: Get base commit for PRs
if: ${{ github.event_name == 'pull_request' }}
run: |
git fetch origin ${{ github.base_ref }}
echo "base_sha=$(git rev-parse origin/${{ github.base_ref }})" >> $GITHUB_ENV
echo "Merging ${{ github.sha }} into ${{ github.base_ref }}"
git fetch origin ${ORIGIN_BASE_REF}
echo "base_sha=$(git rev-parse origin/${ORIGIN_BASE_REF})" >> $GITHUB_ENV
echo "Merging ${{ github.sha }} into ${ORIGIN_BASE_REF}"
env:
ORIGIN_BASE_REF: ${{ github.base_ref }}

- name: Get base commit for Pushes
if: ${{ github.event_name == 'push' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-license-map.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-package-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
sed -i "/^%license/a %doc $license_file_name" "$REGULAR_PKG_SPEC_PATH"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4

Check warning

Code scanning / zizmor

does not set persist-credentials: false Warning

does not set persist-credentials: false

- name: Checkout a stable version of the specs
uses: ./.github/actions/checkout-with-stable-pkgs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-package-cgmanifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-source-signatures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false
fetch-depth: 0

# For consistency, we use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
fetch-depth: 0
persist-credentials: false

# For consistency, we use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
echo "toolchain-spec-list=$(make --no-print-directory -sC toolkit printvar-toolchain_spec_list)" >> "$GITHUB_ENV"

- name: Main branch checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
ref: '3.0'
path: '3.0-checkout'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-srpm-duplicates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4

# For consistency, we use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-static-glibc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

# For consistency, we use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,24 +29,24 @@ jobs:
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@ae9ef3a1d2e3413523c3741725c30064970cc0d4 #v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@ae9ef3a1d2e3413523c3741725c30064970cc0d4 #v3
with:
category: "/language:${{matrix.language}}"

- name: Generate Security Report
uses: rsdmike/github-security-report-action@v3.0.4
uses: rsdmike/github-security-report-action@a149b24539044c92786ec39af8ba38c93496495d #v3.0.4
with:
template: report
token: ${{ secrets.SECURITY_TOKEN }}
Expand All @@ -56,7 +56,7 @@ jobs:
mv ./report.pdf ./report-${{ matrix.language }}.pdf

- name: GitHub Upload Release Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4
with:
name: report-${{ matrix.language }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
permissions: read-all

env:
EXPECTED_GO_VERSION: "1.23"
EXPECTED_GO_VERSION: "1.24"

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:

steps:
#- name: Set up Go 1.x
# uses: actions/setup-go@v5
# uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff #v5
#with:
#go-version: '${{ env.EXPECTED_GO_VERSION }}'
#id: go
Expand All @@ -32,7 +32,7 @@ jobs:
#go version && which go

- name: Check out code into the Go module directory
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
shell: bash

- name: Upload test coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4
with:
name: TestCoverage
path: toolkit/out/tools/test_coverage_report.html
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
echo "updated-specs=${changed_specs}" >> "$GITHUB_ENV"

- name: Main branch checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
ref: '3.0'
path: '3.0-checkout'
Expand All @@ -59,7 +59,7 @@ jobs:
# Our linter is based on the spec-cleaner tool from the folks at openSUSE
# We apply a patch to modify it for our needs
- name: spec-cleaner checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
repository: 'rpm-software-management/spec-cleaner'
ref: 'spec-cleaner-1.2.0'
Expand All @@ -68,7 +68,7 @@ jobs:

# For consistency, we use the same major/minor version of Python that Azure Linux ships
- name: Setup Python 3.12
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: 3.12

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
fi
exit 0

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 #v4
if: ${{ always() }}
with:
name: linted_specs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
fetch-depth: 0
persist-credentials: false

- name: Lint
uses: github/super-linter/slim@v7
uses: github/super-linter/slim@b807e99ddd37e444d189cfd2c2ca1274d8ae8ef1 #v7
env:
# the default branch for this stream is 3.0.
#github.event.repository.default_branch will return main which is not correct
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-conflict-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# Checkout the branch of our repo that triggered this action
- name: Workflow trigger checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify-osguard-imageconfigs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
with:
python-version: '3.x'

Expand Down
1 change: 0 additions & 1 deletion SPECS/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,6 @@ libreswan
librsvg2
librsync
libsafec
libseccomp
libselinux
libsemanage
libsepol
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Signatures": {
"in-band-manageability-1.1.1.tar.gz": "a7f359d6d1e2fda3b6d3c3841dc7f5bd8f53d36fd536cf6b1f1259c3767ee58c",
"in-band-manageability-1.1.2.tar.gz": "0ef9acb10fa80357f2921aa828b7a111884a83f9148f52e61b9877ec58a5c059",
"intel_manageability.conf": "2f67cf57950a29ee37a21f94383c63c067aac2db94e51356ff279110f3e3e5b6",
"inbm-configuration-replace-FQDN.sh": "e91bb05cf42b8311cff3d6b554c9f1c0f49ffb66b8df92bc2f185ae449ef4295",
"inbm.te": "e528ab9808f2c1961cad97e4e616f8a9a8731ea3c1bc5c493c8d0db1243f3044",
Expand Down
5 changes: 4 additions & 1 deletion SPECS/in-band-manageability/in-band-manageability.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Summary: An agent to manage systems via in-band connection
Name: in-band-manageability
Version: 1.1.1
Version: 1.1.2
Release: 1%{?dist}
Distribution: Edge Microvisor Toolkit
Vendor: Intel Corporation
Expand Down Expand Up @@ -208,6 +208,9 @@ fi
%systemd_postun inbd.service

%changelog
* Wed Feb 25 2026 Rajeev Ranjan <rajeev2.ranjan@intel.com> - 1.1.2-1
- Update dependencies

* Fri Feb 20 2026 Rajeev Ranjan <rajeev2.ranjan@intel.com> - 1.1.1-1
- Update to golang 1.25.7

Expand Down
5 changes: 5 additions & 0 deletions SPECS/libseccomp/libseccomp.signatures.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"Signatures": {
"libseccomp-2.5.6.tar.gz": "04c37d72965dce218a0c94519b056e1775cf786b5260ee2b7992956c4ee38633"
}
}
Loading
Loading