Skip to content

Commit

Permalink
Merge pull request #2282 from tweag/renovate/rules_nixpkgs_core-0.x
Browse files Browse the repository at this point in the history
Update dependency rules_nixpkgs_core to v0.13.0
  • Loading branch information
mergify[bot] authored Feb 2, 2025
2 parents 4169f8a + e3cb018 commit 5d7cee8
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/patch-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
jobs:
find-ghc-version:
name: Find GHC versions for which a bindist is provided
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
ghc-matrix: ${{ steps.set-ghc-versions.outputs.ghc-matrix }}
steps:
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
os: [ubuntu-22.04, macos-13, windows-latest]
ghc-version: ${{ fromJSON(needs.find-ghc-version.outputs.ghc-matrix) }}
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
sudo apt-get update
sudo apt-get install --no-install-recommends -yy libtinfo5
sudo apt-get clean
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-22.04' }}
- uses: actions/checkout@v4
- name: Mount Bazel cache
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
jobs:
release:
name: Prepare Release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Check version
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
webpage:
name: Update webpage
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-ghc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
update_ghc:
name: GHC ${{ matrix.ghc }} Update
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
lint:
name: Format & Lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: tweag/configure-bazel-remote-cache-auth@v0
Expand All @@ -43,7 +43,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13]
os: [ubuntu-22.04, macos-13]
module: [rules_haskell, rules_haskell_nix, rules_haskell_tests]
bzlmod: [true, false]
ghc:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
os: [ubuntu-22.04, macos-13, windows-latest]
module: [rules_haskell, rules_haskell_tests]
bzlmod: [true, false]
ghc:
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
path: logs

all_ci_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- lint
- test-nixpkgs
Expand Down
2 changes: 1 addition & 1 deletion examples/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module(

bazel_dep(
name = "rules_nixpkgs_core",
version = "0.12.0",
version = "0.13.0",
)
bazel_dep(
name = "rules_haskell_nix",
Expand Down
4 changes: 2 additions & 2 deletions examples/primitive/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
ghc: ['8.0', '8.2', '8.4', '8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6']
include:
- os: windows-latest
ghc: 'latest'
- os: macOS-latest
ghc: 'latest'
## Already covered by '9.4'
# - os: ubuntu-latest
# - os: ubuntu-22.04
# ghc: 'latest'
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion rules_haskell_tests/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module(

bazel_dep(
name = "rules_nixpkgs_core",
version = "0.12.0",
version = "0.13.0",
)
bazel_dep(
name = "rules_haskell_nix",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ bazel_dep(
)
bazel_dep(
name = "rules_nixpkgs_core",
version = "0.12.0",
version = "0.13.0",
)
bazel_dep(
name = "platforms",
Expand Down
2 changes: 1 addition & 1 deletion tutorial/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ bazel_dep(
)
bazel_dep(
name = "rules_nixpkgs_core",
version = "0.12.0",
version = "0.13.0",
)

0 comments on commit 5d7cee8

Please sign in to comment.