From 2ab74b9836c20ef95a9a6b10bc95f6b3135dd4e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 07:49:46 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4.3.6 to 4.4.1 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.6 to 4.4.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.6...v4.4.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2560437..82f6b07 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,6 @@ jobs: - name: Build with Gradle run: ./gradlew build - name: Upload a Build Artifact - uses: actions/upload-artifact@v4.3.6 + uses: actions/upload-artifact@v4.4.1 with: path: build/libs/**.jar \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 098cb6e..02d778b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: - name: Build with Gradle run: ./gradlew build - name: Upload a Build Artifact - uses: actions/upload-artifact@v4.3.6 + uses: actions/upload-artifact@v4.4.1 with: path: build/libs/**.jar - name: Generating Changelog