Skip to content

Commit

Permalink
bump GitHub workflows to the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
liplum committed Dec 11, 2023
1 parent bb15b5c commit 4de7604
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/CleanUpTemplate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.repository.full_name != 'liplum/MindustryModTemplate'
steps:
- name: Fetch Sources
uses: actions/[email protected]
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/PullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up PATH
run: |
echo "${ANDROID_HOME}/build-tools/30.0.1" >> $GITHUB_PATH
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -25,7 +25,7 @@ jobs:
./gradlew deploy
- name: Upload Mod Jar
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }} Pull Request
path: build/tmp/deploy/*.jar
6 changes: 3 additions & 3 deletions .github/workflows/Push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set Android SDK tools
run: echo "$ANDROID_HOME/build-tools/30.0.3" >> $GITHUB_PATH

- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand All @@ -22,7 +22,7 @@ jobs:
chmod +x gradlew
./gradlew deploy
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Unzip-me
path: build/tmp/deploy/*.jar
4 changes: 2 additions & 2 deletions .github/workflows/ReleaseDraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ jobs:
env:
GH_REPO: ${{ github.repository }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set Android SDK tools
run: echo "$ANDROID_HOME/build-tools/30.0.3" >> $GITHUB_PATH

- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
Expand Down
3 changes: 2 additions & 1 deletion cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
- [ ] Put sprites and bundles into [assets](assets) directory.
- [ ] Check the Mindustry's sources with your IDE or on its [repository](https://github.com/Anuken/Mindustry).
- [ ] Make a nice [icon](icon.png) to replace the placeholder.
- [ ] Push a commit with any message containing `[release]` to generate a release draft on [GitHub](https://github.com/%Owner%/%Repository%/releases).
- [ ] Dispatch [`Create Draft Release` workflow](https://github.com/%Owner%/%Repository%/actions/workflows/ReleaseDraft.yaml) to generate a release draft on [GitHub](https://github.com/%Owner%/%Repository%/releases).
- [ ] Learn how to use [MGPP](https://plumygames.github.io/mgpp/) to boost your modding.
"""


Expand Down

0 comments on commit 4de7604

Please sign in to comment.