From 9a5478d63e122dc7698ec4f059f62bb9fe60f2d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 20:27:48 +0000 Subject: [PATCH 1/3] Bump SixLabors.ImageSharp from 3.1.3 to 3.1.4 in /src/ZKEACMS Bumps [SixLabors.ImageSharp](https://github.com/SixLabors/ImageSharp) from 3.1.3 to 3.1.4. - [Release notes](https://github.com/SixLabors/ImageSharp/releases) - [Commits](https://github.com/SixLabors/ImageSharp/compare/v3.1.3...v3.1.4) --- updated-dependencies: - dependency-name: SixLabors.ImageSharp dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/ZKEACMS/ZKEACMS.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ZKEACMS/ZKEACMS.csproj b/src/ZKEACMS/ZKEACMS.csproj index 721bfde7..6518fd41 100644 --- a/src/ZKEACMS/ZKEACMS.csproj +++ b/src/ZKEACMS/ZKEACMS.csproj @@ -37,7 +37,7 @@ - + From a8e0abd0e2da197693aaadac3df91287cddf6ded Mon Sep 17 00:00:00 2001 From: Wayne Date: Wed, 15 May 2024 16:56:24 +0800 Subject: [PATCH 2/3] @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 78a05509..954b09a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,9 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: '8.0.x' - name: Install dependencies @@ -35,4 +35,4 @@ jobs: run: | mkdir ./src/ZKEACMS.WebHost/bin/Release/PublishOutput/App_Data sqlite-exec -d ./src/ZKEACMS.WebHost/bin/Release/PublishOutput/App_Data/Database.sqlite -f ./Database/SQLite/ZKEACMS.sqlite.sql - cp -f ./Database/SQLite/appsettings.json ./src/ZKEACMS.WebHost/bin/Release/PublishOutput/appsettings.json \ No newline at end of file + cp -f ./Database/SQLite/appsettings.json ./src/ZKEACMS.WebHost/bin/Release/PublishOutput/appsettings.json From 283b002a1ef390ce30963021ebcdef9e96787cbe Mon Sep 17 00:00:00 2001 From: Wayne Date: Wed, 15 May 2024 16:59:35 +0800 Subject: [PATCH 3/3] Update actions --- .github/workflows/docker-publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 8d6840bc..7cb66e9f 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -15,19 +15,19 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - id: docker-tag - uses: yuya-takeyama/docker-tag-from-github-ref-action@v1.0.0 + uses: yuya-takeyama/docker-tag-from-github-ref-action@v1 with: remove-version-tag-prefix: false - name: Log into registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push Docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: . push: true