From 7d137ca78d61ee5d46442fdba486e7274019477f Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Sun, 7 Sep 2025 23:57:37 +0200 Subject: ci: bump gh action versions --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.github/workflows/build.yml') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4867d77..872b904 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 name: Checkout repository with: fetch-tags: true @@ -30,7 +30,7 @@ jobs: rm -f build/libs/*sources*.jar sha256sum build/libs/*.jar - name: Upload build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: built-mod-jar path: build/libs/Firmament-*.jar @@ -58,7 +58,7 @@ jobs: if: ${{ 'push' == github.event_name && ('master' == github.ref_name || startsWith(github.ref_name, 'mc-')) && '637563904' == github.repository_id }} steps: - name: Download generated artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: built-mod-jar - name: Upload to discord @@ -76,7 +76,7 @@ jobs: contents: write if: ${{ 'push' == github.event_name && startsWith(github.ref, 'refs/tags/') }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 name: Checkout repository with: fetch-tags: true @@ -84,7 +84,7 @@ jobs: filter: 'tree:0' - name: Download generated artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: name: built-mod-jar - name: Generate changelog -- cgit