From 8964a0c3a3e5366e134dd9c1598c969dfc2129de Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sun, 19 Jan 2025 12:33:08 +1100 Subject: [PATCH] ci: run instead of use --- .github/workflows/cachix.yaml | 2 ++ .github/workflows/check.yaml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cachix.yaml b/.github/workflows/cachix.yaml index ea2bdf9..cd1e487 100644 --- a/.github/workflows/cachix.yaml +++ b/.github/workflows/cachix.yaml @@ -29,6 +29,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Configure git + run: git config --global url."https://github.com/".insteadOf "git@github.com:" - name: Setup Nix uses: DeterminateSystems/nix-installer-action@main - name: Magic Nix Cache diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 9e01263..d635366 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -18,7 +18,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Configure git - uses: git config --global url."https://github.com/".insteadOf "git@github.com:" + run: git config --global url."https://github.com/".insteadOf "git@github.com:" - name: Setup Nix uses: DeterminateSystems/nix-installer-action@main - name: Magic Nix Cache