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

steps:
- name: 📦 Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1
with:
fetch-depth: 0
ref: ${{ github.ref }}
Expand All @@ -49,7 +49,7 @@ jobs:
version-fragment: 'patch'

- name: 🔍 Check if tag exists
uses: mukunku/tag-exists-action@v1.6.0
uses: mukunku/tag-exists-action@v1.7.0
id: check_tag
with:
tag: ${{ steps.increment.outputs.next-version }}
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

- name: 📁 Preparing the artifact Unbound
run: |
Expand All @@ -112,7 +112,7 @@ jobs:
zip -r ${{ needs.info.outputs.project_name }}-Unbound-${{ needs.info.outputs.project_version }}.zip shaders/

- name: 🚀 Upload artifact Unbound
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: ${{ needs.info.outputs.project_name }}-Unbound-${{ needs.info.outputs.project_version }}
path: ./build/unbound/${{ needs.info.outputs.project_name }}-Unbound-${{ needs.info.outputs.project_version }}.zip
Expand All @@ -127,7 +127,7 @@ jobs:
zip -r ${{ needs.info.outputs.project_name }}-Reimagined-${{ needs.info.outputs.project_version }}.zip shaders/

- name: 🚀 Upload artifact Reimagined
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: ${{ needs.info.outputs.project_name }}-Reimagined-${{ needs.info.outputs.project_version }}
path: ./build/reimagined/${{ needs.info.outputs.project_name }}-Reimagined-${{ needs.info.outputs.project_version }}.zip
Expand All @@ -143,10 +143,10 @@ jobs:

steps:
- name: 📦 Checkout
uses: actions/checkout@v5.0.0
uses: actions/checkout@v6.0.1

- name: 📦 Download artifact
uses: actions/download-artifact@v6.0.0
uses: actions/download-artifact@v7.0.0
with:
merge-multiple: true

Expand All @@ -165,7 +165,7 @@ jobs:

- name: 🚀 Create release
id: release
uses: softprops/action-gh-release@v2.4.2
uses: softprops/action-gh-release@v2.5.0
with:
name: ${{ needs.info.outputs.project_version }}
tag_name: ${{ needs.info.outputs.project_version }}
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
fi

- name: 📦 Download artifact
uses: actions/download-artifact@v6.0.0
uses: actions/download-artifact@v7.0.0
with:
merge-multiple: true

Expand Down