From 1436dac574d611bed4309e46c96a2d1c90cf8b65 Mon Sep 17 00:00:00 2001 From: Phil Clay Date: Sat, 5 Apr 2025 08:37:22 -0700 Subject: [PATCH] Bump actions/upload-artifact@v4 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 53b6e769..536e113e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: jobs: build: name: build - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: fail-fast: false matrix: @@ -39,7 +39,7 @@ jobs: run: ./mvnw --batch-mode --no-transfer-progress --show-version --settings .github/maven/settings.xml -Pcompat-jackson surefire:test - name: Upload Test Reports to Github - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() }} with: name: test-reports-${{ matrix.java }} @@ -55,7 +55,7 @@ jobs: release: name: release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: [build] if: github.event_name == 'push' && github.repository == 'logfellow/logstash-logback-encoder' && github.ref == 'refs/heads/main' && startsWith(github.event.commits[0].message, '[release]') steps: