Skip to content

Commit cf2ccce

Browse files
authored
Merge pull request #2209 from coreosbot-releng/repo-templates
Sync repo templates ⚙
2 parents e058e02 + 75abae8 commit cf2ccce

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Fedora packaging:
5252
GitHub release:
5353
- [ ] Wait until the Bodhi update shows "Signed :heavy_check_mark:" in the Metadata box.
5454
- [ ] Verify that the signing script can fetch the release binaries by running `./signing-ticket.sh test <x.y.z-r> <output-dir>`, where `r` is the Release of the Fedora package without the dist tag (probably `1`)
55-
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](forge.fedoraproject.org/releng/tickets/issues/new).
55+
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](https://forge.fedoraproject.org/releng/tickets/issues/new).
5656
- [ ] Wait for the ticket to be closed
5757
- [ ] Download the artifacts and signatures
5858
- [ ] Verify the signatures

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Set up Go 1.x
27-
uses: actions/setup-go@v6
27+
uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ matrix.go-version }}
3030
- name: Check out repository
@@ -52,7 +52,7 @@ jobs:
5252
fi
5353
echo "All Go files are correctly formatted."
5454
- name: Run linter
55-
uses: golangci/golangci-lint-action@v9
55+
uses: golangci/golangci-lint-action@v8
5656
with:
5757
version: v2.6.2
5858
regenerate:
@@ -62,7 +62,7 @@ jobs:
6262
- name: Check out repository
6363
uses: actions/checkout@v6
6464
- name: Set up Go 1.x
65-
uses: actions/setup-go@v6
65+
uses: actions/setup-go@v5
6666
with:
6767
go-version: 1.25.x
6868
- name: Install schematyper

.github/workflows/ignition-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Set up Go 1.x
28-
uses: actions/setup-go@v6
28+
uses: actions/setup-go@v5
2929
with:
3030
go-version: ${{ matrix.go-version }}
3131
- name: Check out repository

signing-ticket.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ do_sign() {
3333
# Grab the binaries out of the redistributable rpm
3434
rpm="ignition-validate-redistributable-${VR}.noarch.rpm"
3535
koji download-build --key $RPMKEY --rpm $rpm
36-
rpm -qip $rpm | grep -P "^Signature.*${RPMKEY}$" # Verify the output has the key in it
36+
rpm -Kv "$rpm" 2>&1 | grep -qi "${RPMKEY}" # Verify the output has the key in it
3737
rpm2cpio $rpm | cpio -idv './usr/share/ignition/ignition-validate-*'
3838
3939
# Rename the binaries

0 commit comments

Comments
 (0)