mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
Bumps [step-security/harden-runner](https://github.com/step-security/harden-runner) from 2.19.3 to 2.20.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/step-security/harden-runner/releases">step-security/harden-runner's releases</a>.</em></p> <blockquote> <h2>v2.20.0</h2> <h2>What's Changed</h2> <ul> <li>Support for block policy for MacOS and Windows GitHub-hosted runners</li> <li>Support for Bitrise MacOS GitHub Actions runners</li> <li>HTTPS monitoring support for Bun for Linux runners (enterprise tier)</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.19.4...v2.20.0">https://github.com/step-security/harden-runner/compare/v2.19.4...v2.20.0</a></p> <h2>v2.19.4</h2> <h2>What's Changed</h2> <ul> <li>Improvements for HTTPS Monitoring for the Enterprise tier of Harden Runner</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.19.3...v2.19.4">https://github.com/step-security/harden-runner/compare/v2.19.3...v2.19.4</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/step-security/harden-runner/commit/bf7454d06d71f1098171f2acdf0cd4708d7b5920"><code>bf7454d</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/673">#673</a> from step-security/fix/aggregate-error-startup-hang</li> <li><a href="https://github.com/step-security/harden-runner/commit/1188420976b49762617c32cc010cba50a9fd7a71"><code>1188420</code></a> Update non-TLS agent to v0.16.2</li> <li><a href="https://github.com/step-security/harden-runner/commit/162cfeac170141192dc6d57ade86ddf59448ad96"><code>162cfea</code></a> Update non-TLS agent to v0.16.1</li> <li><a href="https://github.com/step-security/harden-runner/commit/eb9e1f4943b602b6f338f6f79468e812c2c6b320"><code>eb9e1f4</code></a> Bring macOS runner updates from PR 674</li> <li><a href="https://github.com/step-security/harden-runner/commit/1a10b01783c147498a6dee4fa4e7122325762720"><code>1a10b01</code></a> Update Windows agent to v1.0.7</li> <li><a href="https://github.com/step-security/harden-runner/commit/8b4a105ef5119b20c97c1566b0275b9399ae188d"><code>8b4a105</code></a> Apply npm audit fixes with release-age cooldown</li> <li><a href="https://github.com/step-security/harden-runner/commit/3626e0327723bef1c4e6b01750518eccd380a5df"><code>3626e03</code></a> Default TLS status check failures to enabled</li> <li><a href="https://github.com/step-security/harden-runner/commit/100e08b39cfd419c292df7becc379b0305ac0628"><code>100e08b</code></a> Update agent-ebpf to v1.8.12</li> <li><a href="https://github.com/step-security/harden-runner/commit/774f75f2c6334606d2d3d910a663f93c9ea49b3b"><code>774f75f</code></a> Update agent to v1.8.9</li> <li><a href="https://github.com/step-security/harden-runner/commit/f312657a64c745fae39c2c66cc7c7f7bc4c804d8"><code>f312657</code></a> Extend missing-agent-dir guard to Linux and macOS cleanup paths</li> <li>Additional commits viewable in <a href="https://github.com/step-security/harden-runner/compare/ab7a9404c0f3da075243ca237b5fac12c98deaa5...bf7454d06d71f1098171f2acdf0cd4708d7b5920">compare view</a></li> </ul> </details> <br /> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
156 lines
6.2 KiB
YAML
156 lines
6.2 KiB
YAML
name: Update Package Manager Manifests
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: "Version to test (e.g. 2.9.2 — no v prefix)"
|
|
required: true
|
|
type: string
|
|
dry_run:
|
|
description: "Skip the git push at the end (safe test)"
|
|
type: boolean
|
|
default: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
get-release-info:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.info.outputs.version }}
|
|
dmg_sha256: ${{ steps.hashes.outputs.dmg_sha256 }}
|
|
msi_sha256: ${{ steps.hashes.outputs.msi_sha256 }}
|
|
deb_sha256: ${{ steps.hashes.outputs.deb_sha256 }}
|
|
jar_sha256: ${{ steps.hashes.outputs.jar_sha256 }}
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Extract version from tag or manual input
|
|
id: info
|
|
env:
|
|
DISPATCH_VERSION: ${{ inputs.version }}
|
|
RELEASE_TAG: ${{ github.event.release.tag_name }}
|
|
run: |
|
|
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
|
|
VERSION="$DISPATCH_VERSION"
|
|
else
|
|
VERSION="$RELEASE_TAG"
|
|
fi
|
|
VERSION="${VERSION#v}"
|
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Download release assets and compute SHA256
|
|
id: hashes
|
|
env:
|
|
VERSION: ${{ steps.info.outputs.version }}
|
|
GH_TOKEN: ${{ github.token }}
|
|
run: |
|
|
BASE="https://github.com/Stirling-Tools/Stirling-PDF/releases/download/v${VERSION}"
|
|
|
|
download_sha256() {
|
|
local url="$1"
|
|
local file
|
|
file=$(basename "$url")
|
|
curl -fsSL --retry 3 -o "$file" "$url"
|
|
sha256sum "$file" | awk '{print $1}'
|
|
}
|
|
|
|
DMG_SHA=$(download_sha256 "${BASE}/Stirling-PDF-macos-universal.dmg")
|
|
MSI_SHA=$(download_sha256 "${BASE}/Stirling-PDF-windows-x86_64.msi")
|
|
DEB_SHA=$(download_sha256 "${BASE}/Stirling-PDF-linux-x86_64.deb")
|
|
JAR_SHA=$(download_sha256 "${BASE}/Stirling-PDF-with-login.jar")
|
|
|
|
echo "dmg_sha256=$DMG_SHA" >> "$GITHUB_OUTPUT"
|
|
echo "msi_sha256=$MSI_SHA" >> "$GITHUB_OUTPUT"
|
|
echo "deb_sha256=$DEB_SHA" >> "$GITHUB_OUTPUT"
|
|
echo "jar_sha256=$JAR_SHA" >> "$GITHUB_OUTPUT"
|
|
|
|
update-homebrew-and-scoop:
|
|
needs: get-release-info
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Checkout homebrew-stirling-pdf tap (also hosts Scoop bucket)
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
repository: Stirling-Tools/homebrew-stirling-pdf
|
|
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
|
|
path: tap
|
|
|
|
# Stirling-PDF now ships a single universal DMG, so the Cask should
|
|
# have one sha256 line rather than separate on_arm/on_intel blocks.
|
|
# We rewrite every `sha256 "..."` in the Cask to the same value so
|
|
# the workflow keeps working through the Cask migration: pre-migration
|
|
# both arch blocks get the universal SHA (still correct, since both
|
|
# would resolve to the same DMG), post-migration the lone sha256 line
|
|
# is updated.
|
|
- name: Update Homebrew cask (Casks/stirling-pdf.rb)
|
|
env:
|
|
VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
DMG_SHA: ${{ needs.get-release-info.outputs.dmg_sha256 }}
|
|
run: |
|
|
CASK="tap/Casks/stirling-pdf.rb"
|
|
sed -i "s/version \"[^\"]*\"/version \"${VERSION}\"/" "$CASK"
|
|
sed -i "s/sha256 \"[^\"]*\"/sha256 \"${DMG_SHA}\"/g" "$CASK"
|
|
|
|
- name: Update Homebrew formula (Formula/stirling-pdf-server.rb)
|
|
env:
|
|
VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
|
|
run: |
|
|
FORMULA="tap/Formula/stirling-pdf-server.rb"
|
|
sed -i "s/version \"[^\"]*\"/version \"${VERSION}\"/" "$FORMULA"
|
|
sed -i "s/sha256 \"[^\"]*\"/sha256 \"${JAR_SHA}\"/" "$FORMULA"
|
|
|
|
- name: Update Scoop stirling-pdf.json
|
|
env:
|
|
VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
MSI_SHA: ${{ needs.get-release-info.outputs.msi_sha256 }}
|
|
run: |
|
|
MANIFEST="tap/scoop/stirling-pdf.json"
|
|
jq --arg v "$VERSION" --arg h "$MSI_SHA" \
|
|
'.version = $v | .architecture["64bit"].url = "https://github.com/Stirling-Tools/Stirling-PDF/releases/download/v\($v)/Stirling-PDF-windows-x86_64.msi" | .architecture["64bit"].hash = $h' \
|
|
"$MANIFEST" > tmp.json && mv tmp.json "$MANIFEST"
|
|
|
|
- name: Update Scoop stirling-pdf-server.json
|
|
env:
|
|
VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
|
|
run: |
|
|
MANIFEST="tap/scoop/stirling-pdf-server.json"
|
|
jq --arg v "$VERSION" --arg h "$JAR_SHA" \
|
|
'.version = $v | .url = "https://github.com/Stirling-Tools/Stirling-PDF/releases/download/v\($v)/Stirling-PDF-with-login.jar" | .hash = $h' \
|
|
"$MANIFEST" > tmp.json && mv tmp.json "$MANIFEST"
|
|
|
|
- name: Show tap diff (for dry-run visibility)
|
|
working-directory: tap
|
|
run: |
|
|
echo "--- diff --stat ---"
|
|
git diff --stat
|
|
echo "--- full diff ---"
|
|
git diff
|
|
|
|
- name: Commit and push all tap updates
|
|
if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
|
|
working-directory: tap
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add Casks/stirling-pdf.rb Formula/stirling-pdf-server.rb scoop/stirling-pdf.json scoop/stirling-pdf-server.json
|
|
git diff --cached --quiet && echo "No changes" && exit 0
|
|
git commit -m "chore: bump Stirling-PDF to v${{ needs.get-release-info.outputs.version }}"
|
|
git push
|