fix(ci): Use full URLs for CI Actions
All checks were successful
Perform checks / formatting (push) Successful in 1m13s
Perform checks / nix_flake_check (push) Successful in 52s
Perform checks / nix_build (push) Successful in 2m49s

Forgejo uses https://code.forgejo.org not https://github.com as the
default path
This commit is contained in:
Jiří Štefka 2024-12-13 13:12:20 +01:00
parent 64564114ff
commit ed72f266de
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
2 changed files with 12 additions and 12 deletions

View file

@ -11,13 +11,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: DeterminateSystems/magic-nix-cache-action@main
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v4 # This action
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Run nix fmt
run: nix fmt -- --check .
@ -26,13 +26,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: DeterminateSystems/magic-nix-cache-action@main
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v4 # This action
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Run nix flake check
run: nix flake check
@ -41,12 +41,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: DeterminateSystems/magic-nix-cache-action@main
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v4 # This action
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Build nvim
run: nix build .\#default

View file

@ -11,13 +11,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: DeterminateSystems/magic-nix-cache-action@main
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Update flake.lock
uses: DeterminateSystems/update-flake-lock@main
uses: https://github.com/DeterminateSystems/update-flake-lock@main
with:
# inputs: dzgui dzgui-testing # We'll see whether I want to limit the updates to dzgui
token: ${{ secrets.FORGEJO_TOKEN_FOR_UPDATES }}