diff --git a/.forgejo/workflows/update-flake-lock.yml b/.forgejo/workflows/update-flake-lock.yml index 83d67d58..526626c3 100644 --- a/.forgejo/workflows/update-flake-lock.yml +++ b/.forgejo/workflows/update-flake-lock.yml @@ -2,17 +2,17 @@ name: update-flake-lock run-name: ${{ github.actor }} - update-flake-lock on: push - + jobs: update-flake-lock: - runs-on: alpine + runs-on: ubuntu container: - image: alpine:edge + image: ubuntu:22.04 steps: - name: "Setup Runner" run: | - apk update - apk add git nodejs nix --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ + apt update -y + apt install git nodejs nix-bin -y git config --global user.email "${{github.actor}}" git config --global user.name "Albert J. Copeland" - uses: actions/checkout@v3