pinner 0.0.12

Secure CI/CD workflows by pinning mutable tags to immutable SHA-1 hashes. A high-performance Rust CLI that preserves YAML formatting and comments. Supports GitHub, GitLab, Bitbucket, Forgejo, and Docker image pinning.
Documentation
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #0b0f17;
    --card-bg: #111827;
    --card-border: rgba(56, 189, 248, 0.08);
    --card-border-hover: rgba(56, 189, 248, 0.25);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --accent: #0ea5e9;
    --accent-hover: #38bdf8;
    --accent-glow: rgba(14, 165, 233, 0.15);
    --terminal-bg: #030712;
    --success: #10b981;
    --success-border: rgba(16, 185, 129, 0.2);
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #374151;
}

/* Hero Glow Effects */
.hero-gradient {
    background: radial-gradient(circle at 50% 30%, rgba(14, 165, 233, 0.12) 0%, rgba(11, 15, 23, 0) 60%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Glassmorphism Cards */
.card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.04), 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Modern Terminal Mockup */
.terminal {
    background-color: var(--terminal-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    font-family: 'JetBrains Mono', monospace;
}

/* Styled Code blocks */
pre {
    background-color: var(--terminal-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 1.25rem;
    overflow-x: auto;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

code {
    font-family: 'JetBrains Mono', monospace;
}

p code, li code {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--accent-hover);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Sidebar Callouts */
.origin-quote {
    border-left: 3px solid var(--accent);
    background: linear-gradient(90deg, rgba(14, 165, 233, 0.04) 0%, rgba(11, 15, 23, 0) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* OS Switcher Tabs */
.tab-active {
    background: rgba(14, 165, 233, 0.15) !important;
    border-bottom: 2px solid var(--accent) !important;
    color: #ffffff !important;
}

/* Animations */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
}

.pulse-glow {
    animation: pulse-slow 3s infinite ease-in-out;
}

/* Transitions */
.hover-scale {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}
.hover-scale:hover {
    transform: scale(1.03);
}

/* Button & interactive states */
.btn-primary {
    background-color: var(--accent);
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.btn-secondary {
    background-color: rgba(31, 41, 55, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(55, 65, 81, 0.8);
    border-color: rgba(156, 163, 175, 0.5);
}