Skip to content

Commit 258eacd

Browse files
committed
ctions/checkout@v6
1 parent a3b0720 commit 258eacd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/box2d-docs-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
dotnet-version: 10.x
2020

2121
- name: Checkout Box2D.NET
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Run Box2D.NET.CommentConverter.csproj
2525
run: dotnet run --project tools/Box2D.NET.CommentConverter/Box2D.NET.CommentConverter.csproj --configuration Release --framework net9.0

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959

6060
# Add any setup steps before running the `github/codeql-action/init` action.
6161
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
os: [ windows-latest, ubuntu-latest, macos-latest ]
3333

3434
steps:
35-
- uses: actions/checkout@v5
35+
- uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
3838

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: echo ok
2929

3030
- name: Checkout
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
3434

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Release
22
on:
33
push:
44
tags:
5-
- '[0-9].[0-9].[0-9].[0-9]+'
5+
- '[0-9]\.[0-9]\.[0-9]\.[0-9]+'
66

77
jobs:
88
build:
99
runs-on: ubuntu-latest
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
1616

@@ -26,7 +26,7 @@ jobs:
2626
run: dotnet build -c Release --no-restore
2727

2828
- name: publish
29-
run: dotnet publish src/Box2D.NET.Samples -c Release --framework net9.0 --no-restore --no-self-contained --output working-temp
29+
run: dotnet publish src/Box2D.NET.Samples -c Release --framework net10.0 --no-restore --no-self-contained --output working-temp
3030

3131
- name: version
3232
id: version
@@ -55,7 +55,7 @@ jobs:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656

5757
- name: zip Upload
58-
uses: softprops/action-gh-release@v1
58+
uses: softprops/action-gh-release@v2
5959
with:
6060
files: |
6161
Box2D.NET.Samples-${{ steps.version.outputs.version}}.zip

0 commit comments

Comments
 (0)