Skip to content

Commit b6f3144

Browse files
coreosbottravier
authored andcommitted
Sync repo templates ⚙
Sync with coreos/repo-templates@1912d5a.
1 parent 951c7b1 commit b6f3144

File tree

6 files changed

+15
-10
lines changed

6 files changed

+15
-10
lines changed

.github/ISSUE_TEMPLATE/release-checklist.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ Push access to the upstream repository is required in order to publish the new t
106106

107107
- Fedora packaging:
108108
- [ ] Review the proposed changes in the PR submitted by Packit in [Fedora](https://src.fedoraproject.org/rpms/rust-coreos-installer/pull-requests).
109-
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f42) then push those, for example:
109+
- [ ] once the PR merges to rawhide, merge rawhide into the other relevant branches (e.g. f43) then push those, for example:
110110
```bash
111111
git checkout rawhide
112112
git pull --ff-only
113-
git checkout f42
113+
git checkout f43
114114
git merge --ff-only rawhide
115-
git push origin f42
115+
git push origin f43
116116
```
117117
- [ ] on each of those branches run `fedpkg build`
118118
- [ ] once the builds have finished, submit them to [bodhi](https://bodhi.fedoraproject.org/updates/new), filling in:

.github/dependabot.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Maintained in https://github.com/coreos/repo-templates
22
# Do not edit downstream.
33

4+
# Updates are grouped together by ecosystem in a single PR. An update can be
5+
# removed from a combined update PR via comments to dependabot:
6+
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-updates-with-comment-commands
7+
48
version: 2
59
updates:
610
- package-ecosystem: "github-actions"
@@ -9,6 +13,10 @@ updates:
913
interval: "weekly"
1014
labels: ["skip-notes"]
1115
open-pull-requests-limit: 3
16+
groups:
17+
actions:
18+
patterns:
19+
- "*"
1220
- package-ecosystem: cargo
1321
directory: /
1422
schedule:
@@ -18,9 +26,6 @@ updates:
1826
- dependency
1927
- skip-notes
2028

21-
# Group all updates together in a single PR. We can remove some
22-
# updates from a combined update PR via comments to dependabot:
23-
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/managing-pull-requests-for-dependency-updates#managing-dependabot-pull-requests-for-grouped-updates-with-comment-commands
2429
groups:
2530
build:
2631
patterns:

.github/workflows/container-rebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Check out repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
ref: ${{ github.event.inputs.git-tag }}
3232
- name: Build and push container

.github/workflows/containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Check out repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- name: Build and push container
2828
uses: coreos/actions-lib/build-container@main
2929
with:

.github/workflows/rpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install packages
2828
run: dnf install -y git make mock
2929
- name: Check out repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
# fetch tags for versioning
3232
with:
3333
fetch-depth: 0

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
1717
steps:
1818
- name: Check out repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
# https://github.com/actions/checkout/issues/760
2121
- name: Mark git checkout as safe
2222
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

0 commit comments

Comments
 (0)