From 3d792b929d8d238f00074f311d9028780b675f27 Mon Sep 17 00:00:00 2001 From: iFargle Date: Mon, 5 Feb 2024 13:30:33 +0900 Subject: [PATCH] test ubuntu --- .forgejo/workflows/update-flake-lock.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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