My nixos configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

update runner images for workflows

+10 -10
+6 -6
.github/workflows/flake-update.yml
··· 7 7 8 8 jobs: 9 9 generate_matrix: 10 - runs-on: ubuntu-20.04 10 + runs-on: ubuntu-24.04 11 11 outputs: 12 12 packages: ${{ steps.gen_packages.outputs.packages }} 13 13 checks: ${{ steps.gen_checks.outputs.checks }} ··· 39 39 printf "::set-output name=checks::%s" "$checks" 40 40 41 41 update_flake: 42 - runs-on: ubuntu-20.04 42 + runs-on: ubuntu-24.04 43 43 steps: 44 44 - name: Clone repository 45 45 uses: actions/checkout@v4 ··· 68 68 path: flake.lock 69 69 70 70 build_flake: 71 - runs-on: ubuntu-20.04 71 + runs-on: ubuntu-24.04 72 72 needs: [generate_matrix, update_flake] 73 73 strategy: 74 74 fail-fast: false ··· 114 114 run: nix build .#${{ matrix.package }} 115 115 116 116 build_checks: 117 - runs-on: ubuntu-20.04 117 + runs-on: ubuntu-24.04 118 118 needs: [generate_matrix, update_flake] 119 119 strategy: 120 120 fail-fast: false ··· 150 150 run: nix build .#checks.x86_64-linux.${{ matrix.check }} --no-link 151 151 152 152 check_flake: 153 - runs-on: ubuntu-20.04 153 + runs-on: ubuntu-24.04 154 154 needs: [update_flake] 155 155 continue-on-error: true 156 156 steps: ··· 177 177 nix flake check --keep-going 178 178 179 179 push_update: 180 - runs-on: ubuntu-20.04 180 + runs-on: ubuntu-24.04 181 181 permissions: write-all 182 182 needs: [update_flake, build_flake, build_checks, check_flake] 183 183 steps:
+4 -4
.github/workflows/pull-check.yml
··· 5 5 6 6 jobs: 7 7 generate_matrix: 8 - runs-on: ubuntu-20.04 8 + runs-on: ubuntu-24.04 9 9 outputs: 10 10 packages: ${{ steps.gen_packages.outputs.packages }} 11 11 checks: ${{ steps.gen_checks.outputs.checks }} ··· 37 37 printf "checks=%s" "$checks" >> $GITHUB_OUTPUT 38 38 39 39 build_flake: 40 - runs-on: ubuntu-20.04 40 + runs-on: ubuntu-24.04 41 41 needs: [generate_matrix] 42 42 strategy: 43 43 fail-fast: false ··· 71 71 run: nix build .#${{ matrix.package }} 72 72 73 73 build_checks: 74 - runs-on: ubuntu-20.04 74 + runs-on: ubuntu-24.04 75 75 needs: [generate_matrix] 76 76 strategy: 77 77 fail-fast: false ··· 97 97 run: nix build .#checks.x86_64-linux.${{ matrix.check }} --no-link 98 98 99 99 check_flake: 100 - runs-on: ubuntu-20.04 100 + runs-on: ubuntu-24.04 101 101 continue-on-error: true 102 102 steps: 103 103 - name: Clone repository