Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Commit

Permalink
build(deps): bump the dependencies group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 2 updates: [actions/setup-dotnet](https://github.com/actions/setup-dotnet) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release).


Updates `actions/setup-dotnet` from 3 to 4
- [Release notes](https://github.com/actions/setup-dotnet/releases)
- [Commits](actions/setup-dotnet@v3...v4)

Updates `softprops/action-gh-release` from 1 to 2
- [Release notes](https://github.com/softprops/action-gh-release/releases)
- [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md)
- [Commits](softprops/action-gh-release@v1...v2)

---
updated-dependencies:
- dependency-name: actions/setup-dotnet
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: softprops/action-gh-release
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jul 7, 2024
1 parent 9c7a414 commit b02d265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Setup dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
include-prerelease: true
Expand All @@ -32,7 +32,7 @@ jobs:
run: |
cd ./pub/linux-x64 && zip -r ../../axus-linux-x64-${{ env.RELEASE_VERSION }}.zip ./*
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
axus-linux-x64-${{ env.RELEASE_VERSION }}.zip
Expand All @@ -50,7 +50,7 @@ jobs:
chcp 65001 #set code page to utf-8
echo ("RELEASE_VERSION=" + $env:GITHUB_REF.replace('refs/tags/', '')) >> $env:GITHUB_ENV
- name: Setup dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
include-prerelease: true
Expand All @@ -66,7 +66,7 @@ jobs:
files: ./pub/win-x64
dest: axus-win-x64-${{ env.RELEASE_VERSION }}.zip
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
axus-win-x64-${{ env.RELEASE_VERSION }}.zip
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: "recursive"
- name: Setup dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Setup dotnet tool
Expand All @@ -40,7 +40,7 @@ jobs:
with:
submodules: "recursive"
- name: Setup dotnet
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: 7.0.x
- name: Install dependencies
Expand Down

0 comments on commit b02d265

Please sign in to comment.