|
| 1 | +name: ci |
| 2 | + |
| 3 | +concurrency: |
| 4 | + group: ${{ github.workflow }}-${{ github.ref }} |
| 5 | + cancel-in-progress: true |
| 6 | + |
| 7 | +on: |
| 8 | + schedule: |
| 9 | + - cron: '0 10 * * *' |
| 10 | + push: |
| 11 | + branches: |
| 12 | + - 'master' |
| 13 | + - 'releases/v*' |
| 14 | + tags: |
| 15 | + - 'v*' |
| 16 | + pull_request: |
| 17 | + branches: |
| 18 | + - 'master' |
| 19 | + - 'releases/v*' |
| 20 | + |
| 21 | +jobs: |
| 22 | + gpg: |
| 23 | + runs-on: ubuntu-latest |
| 24 | + steps: |
| 25 | + - name: Harden Runner |
| 26 | + uses: step-security/harden-runner@v2 |
| 27 | + with: |
| 28 | + egress-policy: audit |
| 29 | + |
| 30 | + - |
| 31 | + name: GPG conf |
| 32 | + run: | |
| 33 | + cat ~/.gnupg/gpg.conf || true |
| 34 | +
|
| 35 | + armored: |
| 36 | + runs-on: ${{ matrix.os }} |
| 37 | + strategy: |
| 38 | + fail-fast: false |
| 39 | + matrix: |
| 40 | + key: |
| 41 | + - test-key |
| 42 | + - test-subkey |
| 43 | + global: |
| 44 | + - false |
| 45 | + - true |
| 46 | + os: |
| 47 | + - ubuntu-latest |
| 48 | + - macOS-latest |
| 49 | + - windows-latest |
| 50 | + include: |
| 51 | + - key: test-subkey |
| 52 | + fingerprint: C17D11ADF199F12A30A0910F1F80449BE0B08CB8 |
| 53 | + steps: |
| 54 | + - name: Harden Runner |
| 55 | + uses: step-security/harden-runner@v2 |
| 56 | + with: |
| 57 | + egress-policy: audit |
| 58 | + |
| 59 | + - |
| 60 | + name: Checkout |
| 61 | + uses: actions/checkout@v4 |
| 62 | + - |
| 63 | + name: GPG conf |
| 64 | + uses: actions/github-script@v6 |
| 65 | + with: |
| 66 | + script: | |
| 67 | + const fs = require('fs'); |
| 68 | + const gnupgfolder = `${require('os').homedir()}/.gnupg`; |
| 69 | + if (!fs.existsSync(gnupgfolder)){ |
| 70 | + fs.mkdirSync(gnupgfolder); |
| 71 | + } |
| 72 | + fs.chmodSync(gnupgfolder, '0700'); |
| 73 | + fs.copyFile('__tests__/fixtures/gpg.conf', `${gnupgfolder}/gpg.conf`, (err) => { |
| 74 | + if (err) throw err; |
| 75 | + }); |
| 76 | + - |
| 77 | + name: Get test key and passphrase |
| 78 | + uses: actions/github-script@v6 |
| 79 | + id: test |
| 80 | + with: |
| 81 | + script: | |
| 82 | + const fs = require('fs'); |
| 83 | + core.setOutput('pgp', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}.pgp', {encoding: 'utf8'})); |
| 84 | + core.setOutput('passphrase', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}.pass', {encoding: 'utf8'})); |
| 85 | + - |
| 86 | + name: Import GPG |
| 87 | + uses: ./ |
| 88 | + with: |
| 89 | + gpg_private_key: ${{ steps.test.outputs.pgp }} |
| 90 | + passphrase: ${{ steps.test.outputs.passphrase }} |
| 91 | + trust_level: 5 |
| 92 | + git_config_global: ${{ matrix.global }} |
| 93 | + git_user_signingkey: true |
| 94 | + git_commit_gpgsign: true |
| 95 | + git_tag_gpgsign: true |
| 96 | + git_push_gpgsign: if-asked |
| 97 | + fingerprint: ${{ matrix.fingerprint }} |
| 98 | + - |
| 99 | + name: List keys |
| 100 | + run: | |
| 101 | + gpg -K |
| 102 | + shell: bash |
| 103 | + |
| 104 | + base64: |
| 105 | + runs-on: ${{ matrix.os }} |
| 106 | + strategy: |
| 107 | + fail-fast: false |
| 108 | + matrix: |
| 109 | + key: |
| 110 | + - test-key |
| 111 | + - test-subkey |
| 112 | + os: |
| 113 | + - ubuntu-latest |
| 114 | + - macOS-latest |
| 115 | + - windows-latest |
| 116 | + include: |
| 117 | + - key: test-subkey |
| 118 | + fingerprint: C17D11ADF199F12A30A0910F1F80449BE0B08CB8 |
| 119 | + steps: |
| 120 | + - name: Harden Runner |
| 121 | + uses: step-security/harden-runner@v2 |
| 122 | + with: |
| 123 | + egress-policy: audit |
| 124 | + |
| 125 | + - |
| 126 | + name: Checkout |
| 127 | + uses: actions/checkout@v4 |
| 128 | + - |
| 129 | + name: Get test key and passphrase |
| 130 | + uses: actions/github-script@v6 |
| 131 | + id: test |
| 132 | + with: |
| 133 | + script: | |
| 134 | + const fs = require('fs'); |
| 135 | + core.setOutput('pgp-base64', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}-base64.pgp', {encoding: 'utf8'})); |
| 136 | + core.setOutput('passphrase', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}.pass', {encoding: 'utf8'})); |
| 137 | + - |
| 138 | + name: Import GPG |
| 139 | + uses: ./ |
| 140 | + with: |
| 141 | + gpg_private_key: ${{ steps.test.outputs.pgp-base64 }} |
| 142 | + passphrase: ${{ steps.test.outputs.passphrase }} |
| 143 | + git_user_signingkey: true |
| 144 | + git_commit_gpgsign: true |
| 145 | + git_tag_gpgsign: true |
| 146 | + git_push_gpgsign: if-asked |
| 147 | + fingerprint: ${{ matrix.fingerprint }} |
| 148 | + |
| 149 | + trust: |
| 150 | + runs-on: ${{ matrix.os }} |
| 151 | + strategy: |
| 152 | + fail-fast: false |
| 153 | + matrix: |
| 154 | + key: |
| 155 | + - test-key |
| 156 | + level: |
| 157 | + - '' |
| 158 | + - 5 |
| 159 | + - 4 |
| 160 | + - 3 |
| 161 | + - 2 |
| 162 | + - 1 |
| 163 | + os: |
| 164 | + - ubuntu-latest |
| 165 | + - macOS-latest |
| 166 | + - windows-latest |
| 167 | + steps: |
| 168 | + - name: Harden Runner |
| 169 | + uses: step-security/harden-runner@v2 |
| 170 | + with: |
| 171 | + egress-policy: audit |
| 172 | + |
| 173 | + - |
| 174 | + name: Checkout |
| 175 | + uses: actions/checkout@v4 |
| 176 | + - |
| 177 | + name: GPG conf |
| 178 | + uses: actions/github-script@v6 |
| 179 | + with: |
| 180 | + script: | |
| 181 | + const fs = require('fs'); |
| 182 | + const gnupgfolder = `${require('os').homedir()}/.gnupg`; |
| 183 | + if (!fs.existsSync(gnupgfolder)){ |
| 184 | + fs.mkdirSync(gnupgfolder); |
| 185 | + } |
| 186 | + fs.chmodSync(gnupgfolder, '0700'); |
| 187 | + fs.copyFile('__tests__/fixtures/gpg.conf', `${gnupgfolder}/gpg.conf`, (err) => { |
| 188 | + if (err) throw err; |
| 189 | + }); |
| 190 | + - |
| 191 | + name: Get test key and passphrase |
| 192 | + uses: actions/github-script@v6 |
| 193 | + id: test |
| 194 | + with: |
| 195 | + script: | |
| 196 | + const fs = require('fs'); |
| 197 | + core.setOutput('pgp', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}.pgp', {encoding: 'utf8'})); |
| 198 | + core.setOutput('passphrase', fs.readFileSync('__tests__/fixtures/${{ matrix.key }}.pass', {encoding: 'utf8'})); |
| 199 | + - |
| 200 | + name: Import GPG |
| 201 | + id: import_gpg |
| 202 | + uses: ./ |
| 203 | + with: |
| 204 | + gpg_private_key: ${{ steps.test.outputs.pgp }} |
| 205 | + passphrase: ${{ steps.test.outputs.passphrase }} |
| 206 | + trust_level: ${{ matrix.level }} |
| 207 | + - |
| 208 | + name: List trust values |
| 209 | + run: | |
| 210 | + gpg --export-ownertrust |
| 211 | + shell: bash |
0 commit comments