Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies to latest versions #154

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions configfiles/dnfconfig.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# yamllint disable rule:line-length
repo-bundle:
# --------------------------------------------------------------------------------------------

Check warning on line 4 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

4:1 [comments-indentation] comment not indented like content
# The defaults for this bundle points to the second most recent stable dot release 9.x.
# Upstream vaults/freezes the previous release repo once a new dot release is stable.
# The newest stable dot release keeps on receiving updates, so we use the previous one
Expand All @@ -22,9 +22,9 @@
extras:
enabled: false
version-labels:
default: 9.3
default: 9.4
priority: 2
# --------------------------------------------------------------------------------------------

Check warning on line 27 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

27:1 [comments-indentation] comment not indented like content

# --------------------------------------------------------------------------------------------
epel9:
Expand All @@ -43,15 +43,15 @@
# Each version points to a timestamped snapshot of the repo cache of the epel9-unsafe repo.
# The eext team is responsible for creating these snapshots.
# default points to the latest such snapshot.
default: v20240522-1
default: v20250107-1
priority: 2
# --------------------------------------------------------------------------------------------

Check warning on line 48 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

48:1 [comments-indentation] comment not indented like content

# ********************************************************************************************
# DO NOT use any repo bundles below this unless you know what you're doing.
# ********************************************************************************************

#---------------------------------------------------------------------------------------------

Check warning on line 54 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

54:2 [comments] missing starting space in comment
el9-snapshot:
# DO NOT use el9-snapshot as a repo-bundle in your eext.yaml, unless recommended to you by the eext team.
# el9-snapshot is a snapshot of the repo cache of el9-unsafe.
Expand All @@ -72,9 +72,9 @@
extras:
enabled: false
priority: 2
#---------------------------------------------------------------------------------------------

Check warning on line 75 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

75:2 [comments] missing starting space in comment

Check warning on line 75 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

75:1 [comments-indentation] comment not indented like content

#---------------------------------------------------------------------------------------------

Check warning on line 77 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

77:2 [comments] missing starting space in comment
fc40-snapshot:
# DO NOT use fc40-snapshot as a repo-bundle in your eext.yaml,
# unless recommended to you by the eext team.
Expand All @@ -91,7 +91,7 @@
releases:
enabled: true
priority: 3
#---------------------------------------------------------------------------------------------

Check warning on line 94 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

94:2 [comments] missing starting space in comment

Check warning on line 94 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

94:1 [comments-indentation] comment not indented like content

# --------------------------------------------------------------------------------------------
el9-unsafe:
Expand Down Expand Up @@ -121,7 +121,7 @@
# which upstream updates regularly.
default: 9
priority: 2
# --------------------------------------------------------------------------------------------

Check warning on line 124 in configfiles/dnfconfig.yaml

View workflow job for this annotation

GitHub Actions / Lint

124:1 [comments-indentation] comment not indented like content

# --------------------------------------------------------------------------------------------
el9-beta-unsafe:
Expand Down Expand Up @@ -149,7 +149,7 @@
version-labels:
# default always points to upstream latest dot release 9.x's beta version,
# which upstream updates regularly.
default: 9.4-beta
default: 9.5-beta
priority: 2
# --------------------------------------------------------------------------------------------

Expand Down
6 changes: 3 additions & 3 deletions dnfconfig/defaultconfig_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func TestDefaultDnfRepoConfig(t *testing.T) {
"x86_64": "x86_64",
"aarch64": "aarch64",
},
defaultVersion: "9.3",
defaultVersion: "9.4",
},
"el9-snapshot": ExpectedDefaultRepoBundle{
repoToURLFormatString: map[string]string{
Expand Down Expand Up @@ -102,7 +102,7 @@ func TestDefaultDnfRepoConfig(t *testing.T) {
"x86_64": "x86_64",
"aarch64": "aarch64",
},
defaultVersion: "9.4-beta",
defaultVersion: "9.5-beta",
},
"epel9": ExpectedDefaultRepoBundle{
repoToURLFormatString: map[string]string{
Expand All @@ -118,7 +118,7 @@ func TestDefaultDnfRepoConfig(t *testing.T) {
"x86_64": "x86_64",
"aarch64": "aarch64",
},
defaultVersion: "v20240522-1",
defaultVersion: "v20250107-1",
},
"epel9-unsafe": ExpectedDefaultRepoBundle{
repoToURLFormatString: map[string]string{
Expand Down
Loading