diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 925448a..53003aa 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -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 diff --git a/.forgejo/workflows/cla.yml b/.forgejo/workflows/cla.yml index f741a81..0c3f9b9 100644 --- a/.forgejo/workflows/cla.yml +++ b/.forgejo/workflows/cla.yml @@ -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: | diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index fb0c3a9..c85a07b 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -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