Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

# Note: .NET SDK provides basic C# syntax support for Copilot.
# This Unity SDK uses Unity-specific APIs (UnityEngine, UnityEditor)
# that aren't available in standard .NET, so Copilot's type information
# for Unity-specific code will be limited. However, this still helps with
# general C# syntax, patterns, and non-Unity code analysis.
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: '6.0.x'

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Check-out"
uses: actions/checkout@v1
uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e # v1
- name: "Update Release CHANGELOG"
id: update-release-changelog
uses: heinrichreimer/github-changelog-generator-action@v2.2
uses: heinrichreimer/github-changelog-generator-action@854576bb5274851427527d8199fba0061552dff5 # v2.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
onlyLastTag: true
Expand All @@ -38,14 +38,14 @@ jobs:
git config user.email "github-actions[bot]@users.noreply.github.com"
git commit -m "Update CHANGELOG"
- name: Push CHANGELOG changes
uses: ad-m/github-push-action@v0.6.0
uses: ad-m/github-push-action@40bf560936a8022e68a3c00e7d2abefaf01305a6 # v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master
force: true
- name: "Prepare for the Github Release"
id: generate-release-changelog
uses: heinrichreimer/github-changelog-generator-action@v2.2
uses: heinrichreimer/github-changelog-generator-action@854576bb5274851427527d8199fba0061552dff5 # v2.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
output: "output.md"
Expand All @@ -63,7 +63,7 @@ jobs:
author: false
verbose: true
- name: "🚀 Create GitHub Release"
uses: actions/create-release@v1
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
Loading