Skip to content

update

update #1278

Workflow file for this run

name: update
on:
schedule:
- cron: "0 6 * * *"
jobs:
update:
name: update
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: staging
- name: Install nix
uses: cachix/install-nix-action@V27
- name: Update everything
run: |
git config --local user.name "github-actions"
git config --local user.email "[email protected]"
nix shell nixpkgs#python311 -c ./update
nix flake update
curl -fLSso data/rust-analyzer-vsix.zip \
https://github.com/rust-lang/rust-analyzer/releases/download/nightly/rust-analyzer-no-server.vsix || true
git commit -am "update: rust toolchains, rust analyzer, flake.lock"
git push