Skip to content

Commit

Permalink
chore: Bump action package version
Browse files Browse the repository at this point in the history
  • Loading branch information
Yushu2606 committed Feb 18, 2024
1 parent 2448c6b commit 5447b41
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: 8.0.x

- name: Build
run: dotnet publish -c ${{env.BUILD_TYPE}}

- name: Upload Artifact
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.3.1
with:
path: src/bin
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
version:
required: true
description: Version (like 1.0.0)
description: Version (like v1.0.0)
prerelease:
type: boolean
required: true
Expand All @@ -21,10 +21,10 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.0.0
with:
dotnet-version: ${{env.DOTNET_VERSION}}.0.x

Expand All @@ -41,7 +41,7 @@ jobs:
NO_BUILD: true

- name: Create New Release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
prerelease: ${{ github.event.inputs.prerelease }}
tag: ${{ github.event.inputs.version }}
Expand Down

0 comments on commit 5447b41

Please sign in to comment.