Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
Expand Down Expand Up @@ -51,14 +51,14 @@ jobs:
echo "DISCORD_ARTIFACT_PATH=$(gradle :imperium-discord:getArtifactPath -q)" >> $GITHUB_ENV

- name: Upload Mindustry artifact to Actions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: imperium-mindustry
path: "${{ env.MINDUSTRY_ARTIFACT_PATH }}"
if-no-files-found: error

- name: Upload Discord artifacts to Actions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: imperium-discord
path: "${{ env.DISCORD_ARTIFACT_PATH }}"
Expand All @@ -70,6 +70,6 @@ jobs:

- name: Commit Formatted Code
if: ${{ github.event_name != 'pull_request' }}
uses: stefanzweifel/git-auto-commit-action@v6
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "style: Format code"
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
version: "${{ steps.setup.outputs.version }}"
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-tags: true
fetch-depth: 0
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
run: gradle incrementVersionFile

- name: Commit Incremented Version
uses: stefanzweifel/git-auto-commit-action@v6
uses: stefanzweifel/git-auto-commit-action@v7
with:
branch: "${{ github.event.release.target_commitish }}"
commit_message: "chore: Increment version"
Expand All @@ -69,7 +69,7 @@ jobs:
needs: [ github ]
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: "refs/tags/v${{ needs.github.outputs.version }}"
fetch-tags: true
Expand Down
Loading