Skip to content

Commit d17dc80

Browse files
authored
Merge pull request #1033 from mulkieran/f43
Increase CURRENT DEVELOPMENT ENVIRONMENT to Fedora 43
2 parents 6c6a390 + b123682 commit d17dc80

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/cargo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
checks-with-ci-repo:
2222
runs-on: ubuntu-22.04
2323
container:
24-
image: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
24+
image: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
2525
steps:
2626
- name: Install git for checkout action
2727
run: dnf install -y git
@@ -52,12 +52,12 @@ jobs:
5252
- name: Run comparisons of version specs with -sys package
5353
run: |
5454
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=rawhide IGNORE_ARGS="--ignore-category low" make -f ../Makefile check-fedora-versions
55+
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f44 IGNORE_ARGS="--ignore-category low" make -f ../Makefile check-fedora-versions
5556
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f43 IGNORE_ARGS="--ignore-category low" make -f ../Makefile check-fedora-versions
56-
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f42 IGNORE_ARGS="--ignore-category low" make -f ../Makefile check-fedora-versions
5757
working-directory: devicemapper-rs/devicemapper-rs-sys
5858
- name: Run comparisons of version specs with package
5959
run: |
6060
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=rawhide IGNORE_ARGS="--ignore-category low --ignore-high=devicemapper-sys" make -f Makefile check-fedora-versions
61+
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f44 IGNORE_ARGS="--ignore-category low --ignore-high=devicemapper-sys" make -f Makefile check-fedora-versions
6162
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f43 IGNORE_ARGS="--ignore-category low --ignore-high=devicemapper-sys" make -f Makefile check-fedora-versions
62-
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f42 IGNORE_ARGS="--ignore-category low --ignore-high=devicemapper-sys" make -f Makefile check-fedora-versions
6363
working-directory: devicemapper-rs

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
yamllint:
8686
runs-on: ubuntu-22.04
8787
container:
88-
image: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
88+
image: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
8989
steps:
9090
- uses: actions/checkout@v6
9191
with:

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
checks-with-ci-repo:
4646
runs-on: ubuntu-22.04
4747
container:
48-
image: fedora:42 # CURRENT DEVELOPMENT ENVIRONMENT
48+
image: fedora:43 # CURRENT DEVELOPMENT ENVIRONMENT
4949
steps:
5050
- name: Install git for checkout action
5151
run: dnf install -y git
@@ -75,14 +75,14 @@ jobs:
7575
- name: Run comparison of version specs with -sys package
7676
run: |
7777
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=rawhide make -f ../Makefile check-fedora-versions
78+
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f44 make -f ../Makefile check-fedora-versions
7879
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f43 make -f ../Makefile check-fedora-versions
79-
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f42 make -f ../Makefile check-fedora-versions
8080
working-directory: devicemapper-rs/devicemapper-rs-sys
8181
- name: Run comparison of version specs with package
8282
run: |
8383
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=rawhide make -f Makefile check-fedora-versions
84+
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f44 make -f Makefile check-fedora-versions
8485
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f43 make -f Makefile check-fedora-versions
85-
COMPARE_FEDORA_VERSIONS=$GITHUB_WORKSPACE/ci/dependency_management/compare_fedora_versions FEDORA_RELEASE=f42 make -f Makefile check-fedora-versions
8686
working-directory: devicemapper-rs
8787

8888
semver-checks:

0 commit comments

Comments
 (0)