Bump actions/checkout from 3 to 4 #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Actions π | |
on: | |
pull_request: {} | |
push: { branches: [main] } | |
jobs: | |
activateAndThenReturnLicense: | |
name: returnLicense π | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repository (required to test local actions) | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Activate Unity | |
- name: Activate Unity | |
uses: game-ci/[email protected] | |
env: | |
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }} | |
# Return License | |
- name: Return license | |
uses: ./ | |
if: always() |