update unstable #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update unstable | |
on: | |
schedule: | |
- cron: "0 8 * * 1" | |
jobs: | |
update-unstable: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: niv update | |
run: nix run nixpkgs#niv -- update nixpkgs-unstable | |
- name: open PR | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: update nixpkgs-unstable | |
branch: actions/update-nixpkgs-unstable | |
title: Update nixpkgs-unstable | |
body: >- | |
# Why | |
Users should have the latest and greatest nixpkgs-unstable | |
available to them for use on Replit. | |
# What Changed | |
Updated the unstable channel by running | |
`nix run nixpkgs#niv -- update nixpkgs-unstable`. | |
# Notes | |
See https://github.com/replit/goval/blob/main/docs/nix-cache.md | |
for more information on updating the Nix cache. | |
This PR is created via a GitHub Actions Workflow. Please | |
take care to ensure its contents are correct. This Workflow | |
runs every month to ensure the Replit nix cache is regularly | |
updated. |