ci(workspace): use fully qualified github urls for actions
Some checks failed
CI / Rust Tests (push) Failing after 3s
CI / Lua Lint & Format (push) Failing after 38s
CI / LFS Pointer Guard (push) Has been cancelled
CI / Rust Check & Lint (push) Failing after 19s

This commit is contained in:
Serkyo 2026-08-07 00:38:00 +02:00
parent 205f9cd0f7
commit 18a2644c44
3 changed files with 13 additions and 13 deletions

View file

@ -14,17 +14,17 @@ jobs:
name: Rust Check & Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/actions/checkout@v4
with:
lfs: true
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: https://github.com/dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
uses: https://github.com/Swatinem/rust-cache@v2
- name: Install shader compiler
run: sudo apt-get update && sudo apt-get install -y libshaderc-dev
@ -39,15 +39,15 @@ jobs:
name: Rust Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/actions/checkout@v4
with:
lfs: true
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
uses: https://github.com/Swatinem/rust-cache@v2
- name: Install shader compiler
run: sudo apt-get update && sudo apt-get install -y libshaderc-dev
@ -59,10 +59,10 @@ jobs:
name: Lua Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: https://github.com/actions/checkout@v4
- name: Check Lua Formatting
uses: JohnnyMorganz/stylua-action@v4
uses: https://github.com/JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
@ -76,7 +76,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Checkout without smudging LFS content so the committed git objects can be inspected directly; a raw-committed binary is only distinguishable from a proper pointer at the object level, not in a smudged working tree.
- uses: actions/checkout@v4
- uses: https://github.com/actions/checkout@v4
with:
lfs: false

View file

@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: https://github.com/actions/checkout@v4
with:
# pull_request_target runs on the base branch; check out the base
# so the signatures file is from the canonical source.
@ -28,7 +28,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- name: CLA enforcement
uses: actions/github-script@v7
uses: https://github.com/actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |

View file

@ -14,11 +14,11 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: https://github.com/actions/checkout@v4
with:
lfs: true
- name: Create Release
uses: softprops/action-gh-release@v2
uses: https://github.com/softprops/action-gh-release@v2
with:
generate_release_notes: true