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.20.0 to 2.21.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.21.0</h2> <h2>What's Changed</h2> <ul> <li>Support for denied endpoints in block mode. This is included in the enterprise tier. Customers can deny outbound calls, for example, to public package registries.</li> <li>Improved Support for AWS CodeBuild GitHub Actions Runners.</li> <li>Bug fixes.</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.20.1...v2.21.0">https://github.com/step-security/harden-runner/compare/v2.20.1...v2.21.0</a></p> <h2>v2.20.1</h2> <h2>What's Changed</h2> <ul> <li>AWS CodeBuild-hosted runner support</li> <li>Implicitly allow single-labeled (internal) domains in block-mode</li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/step-security/harden-runner/compare/v2.20.0...v2.20.1">https://github.com/step-security/harden-runner/compare/v2.20.0...v2.20.1</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/step-security/harden-runner/commit/05e31511f85b41b11d1cf0ef85d0992719546e2c"><code>05e3151</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/684">#684</a> from step-security/rc-42</li> <li><a href="https://github.com/step-security/harden-runner/commit/0f37afa338f57c61ee3dfc274daca8834963d83e"><code>0f37afa</code></a> fix: ignore denied-endpoints on non-enterprise tier</li> <li><a href="https://github.com/step-security/harden-runner/commit/93b58ee491c5b6cf3a5324966fca2908f8d447f3"><code>93b58ee</code></a> fix: resolve cache host read-first and never downgrade egress policy</li> <li><a href="https://github.com/step-security/harden-runner/commit/e7399dd3e93d6c159d314af54b4704bc48abf6bc"><code>e7399dd</code></a> fix: align deny-list mode detection with agent and log when both endpoint inp...</li> <li><a href="https://github.com/step-security/harden-runner/commit/c16689f716a10cdfd9cfe22e63938b8c6c0657de"><code>c16689f</code></a> test: add denied_endpoints to Configuration fixtures and cover deny-list merge</li> <li><a href="https://github.com/step-security/harden-runner/commit/40b99cf0c7161e4dcdc6c5508927188b65028df9"><code>40b99cf</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/682">#682</a> from rohan-stepsecurity/rp/feat/codebuild-self-v2</li> <li><a href="https://github.com/step-security/harden-runner/commit/fedec027a205365a7d64001a81931e4c36a1af6e"><code>fedec02</code></a> Merge branch 'rc-42' into rp/feat/codebuild-self-v2</li> <li><a href="https://github.com/step-security/harden-runner/commit/5361fb178b926b2be6df52e11ee257823821567b"><code>5361fb1</code></a> feat: add build artifacts</li> <li><a href="https://github.com/step-security/harden-runner/commit/286474fffe0b8fe7c9db855f132d04a9b48ab564"><code>286474f</code></a> feat: Support Bravo agent install on CodeBuild runners</li> <li><a href="https://github.com/step-security/harden-runner/commit/051ec05283d064bd82f41279db4f70f0717bf778"><code>051ec05</code></a> Merge pull request <a href="https://redirect.github.com/step-security/harden-runner/issues/683">#683</a> from h0x0er/jatin/deny-list</li> <li>Additional commits viewable in <a href="https://github.com/step-security/harden-runner/compare/v2.20.0...05e31511f85b41b11d1cf0ef85d0992719546e2c">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>
130 lines
4.8 KiB
YAML
130 lines
4.8 KiB
YAML
name: Publish to AUR
|
|
|
|
on:
|
|
release:
|
|
types: [released]
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: "Version to publish (e.g. 2.9.2 — no v prefix)"
|
|
required: true
|
|
type: string
|
|
dry_run:
|
|
description: "Skip the AUR push (safe test)"
|
|
type: boolean
|
|
default: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
get-release-info:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.info.outputs.version }}
|
|
deb_sha256: ${{ steps.hashes.outputs.deb_sha256 }}
|
|
jar_sha256: ${{ steps.hashes.outputs.jar_sha256 }}
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.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 }}
|
|
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}'
|
|
}
|
|
|
|
DEB_SHA=$(download_sha256 "${BASE}/Stirling-PDF-linux-x86_64.deb")
|
|
JAR_SHA=$(download_sha256 "${BASE}/Stirling-PDF-with-login.jar")
|
|
|
|
echo "deb_sha256=$DEB_SHA" >> "$GITHUB_OUTPUT"
|
|
echo "jar_sha256=$JAR_SHA" >> "$GITHUB_OUTPUT"
|
|
|
|
publish-aur:
|
|
environment: package-publish
|
|
needs: get-release-info
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Checkout repository (for PKGBUILD templates)
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Update stirling-pdf-desktop PKGBUILD
|
|
env:
|
|
VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
DEB_SHA: ${{ needs.get-release-info.outputs.deb_sha256 }}
|
|
run: |
|
|
PKGBUILD=".github/aur/stirling-pdf-desktop/PKGBUILD"
|
|
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
|
|
sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
|
|
sed -i "s/'PLACEHOLDER_DEB_SHA256'/'${DEB_SHA}'/" "$PKGBUILD"
|
|
|
|
# Disabled until we sort out the server packaging story.
|
|
# The third-party stirling-pdf-bin on AUR currently covers a similar use case.
|
|
# - name: Update stirling-pdf-server-bin PKGBUILD
|
|
# env:
|
|
# VERSION: ${{ needs.get-release-info.outputs.version }}
|
|
# JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
|
|
# run: |
|
|
# PKGBUILD=".github/aur/stirling-pdf-server-bin/PKGBUILD"
|
|
# sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
|
|
# sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
|
|
# sed -i "s/'PLACEHOLDER_JAR_SHA256'/'${JAR_SHA}'/" "$PKGBUILD"
|
|
|
|
- name: Show updated PKGBUILD (for dry-run visibility)
|
|
run: |
|
|
echo "--- stirling-pdf-desktop PKGBUILD ---"
|
|
cat .github/aur/stirling-pdf-desktop/PKGBUILD
|
|
|
|
- name: Publish stirling-pdf-desktop to AUR
|
|
if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
|
|
uses: KSXGitHub/github-actions-deploy-aur@084b0d9b15415bf9cdb65d44dad1efe37a354050 # v4.2.0
|
|
with:
|
|
pkgname: stirling-pdf-desktop
|
|
pkgbuild: .github/aur/stirling-pdf-desktop/PKGBUILD
|
|
commit_username: Stirling PDF Inc
|
|
commit_email: contact@stirlingpdf.com
|
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"
|
|
|
|
# Disabled until we sort out the server packaging story.
|
|
# - name: Publish stirling-pdf-server-bin to AUR
|
|
# if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
|
|
# uses: KSXGitHub/github-actions-deploy-aur@2ac5a4c1d7035885d46b10e3193393be8460b6f1 # v4.1.1
|
|
# with:
|
|
# pkgname: stirling-pdf-server-bin
|
|
# pkgbuild: .github/aur/stirling-pdf-server-bin/PKGBUILD
|
|
# commit_username: Stirling PDF Inc
|
|
# commit_email: contact@stirlingpdf.com
|
|
# ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
|
# commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"
|