From 7a3f278e4ba42091e17fd0a6deaac0066e14f0b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 May 2022 19:01:03 +0000 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 445e635..b90db0e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: - run: strip target/release/obsidian-export - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: Linux binary path: target/release/obsidian-export @@ -75,7 +75,7 @@ jobs: - run: strip target/release/obsidian-export.exe - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: Windows binary path: target/release/obsidian-export.exe @@ -109,7 +109,7 @@ jobs: - run: strip target/release/obsidian-export - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: MacOS binary path: target/release/obsidian-export diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5eee634..4490ca0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -74,7 +74,7 @@ jobs: version: "latest" args: "--ignore-tests" out-type: "Html" - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: tarpaulin-report path: tarpaulin-report.html