Skip to content

Commit d4da8ad

Browse files
committed
bumped actions to latest
1 parent 7f2c2b8 commit d4da8ad

18 files changed

Lines changed: 69 additions & 69 deletions

File tree

.github/actions/documentation/docfx-build/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Generate docs with docfx'
1+
name: 'Generate docs with docfx'
22
author: 'Pete Sramek'
33
description: 'Generate documentation using docfx'
44
inputs:
@@ -22,7 +22,7 @@ runs:
2222
using: composite
2323
steps:
2424
- name: 'Checkout ${{ github.head_ref || github.ref }}'
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
- name: Dotnet Setup
2727
uses: actions/setup-dotnet@v4
2828
with:
@@ -41,7 +41,7 @@ runs:
4141
run: docfx build ${{ inputs.docfx-json-manifest }}
4242
shell: bash
4343
- name: Upload artifact
44-
uses: actions/upload-artifact@v4
44+
uses: actions/upload-artifact@v7
4545
with:
4646
name: ${{ inputs.artifact-name }}
4747
path: ${{ inputs.output-directory }}

.github/actions/documentation/docfx-metadata/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Generate metadata with docfx'
1+
name: 'Generate metadata with docfx'
22
author: 'Pete Sramek'
33
description: 'Generate metadata using docfx'
44

@@ -26,7 +26,7 @@ runs:
2626
using: composite
2727
steps:
2828
- name: 'Checkout ${{ github.head_ref || github.ref }}'
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Dotnet Setup
3131
uses: actions/setup-dotnet@v4
3232
with:
@@ -59,7 +59,7 @@ runs:
5959
mkdir -p ${{ inputs.output-directory }}
6060
cp -r ${{ inputs.temporary-directory }}/* ${{ inputs.output-directory }}
6161
- name: 'Upload artifact'
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: ${{ inputs.artifact-name }}
6565
path: ${{ inputs.output-directory }}

.github/actions/git/push-changes/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Push Changes'
1+
name: 'Push Changes'
22
author: 'Pete Sramek'
33
description: 'Push changes to a specified branch in the repository.'
44
inputs:
@@ -28,7 +28,7 @@ runs:
2828
using: "composite"
2929
steps:
3030
- name: 'Checkout ${{ github.head_ref || github.ref }}'
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Dotnet Setup
3434
uses: actions/setup-dotnet@v4
@@ -37,7 +37,7 @@ runs:
3737

3838
- name: Download a single artifact
3939
if: ${{ inputs.artifact-name != '' }}
40-
uses: actions/download-artifact@v4
40+
uses: actions/download-artifact@v8
4141
with:
4242
name: ${{ inputs.artifact-name }}
4343
path: ${{ inputs.working-directory }}

.github/actions/github/create-release/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Create GitHub release'
1+
name: 'Create GitHub release'
22
author: 'Pete Sramek'
33
description: 'Create GitHub release.'
44
inputs:
@@ -17,7 +17,7 @@ runs:
1717
using: composite
1818
steps:
1919
- name: 'Checkout ${{ github.head_ref || github.ref }}'
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- run: |
2222
echo "release-version=${{ inputs.release-version }}"
2323
echo "is-preview=${{ inputs.is-preview }}"

.github/actions/github/write-file-to-summary/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Write file to step summary'
1+
name: 'Write file to step summary'
22
author: 'Pete Sramek'
33
description: 'Writes file contents to step summary.'
44
inputs:
@@ -17,7 +17,7 @@ runs:
1717
using: composite
1818
steps:
1919
- name: 'Checkout ${{ github.head_ref || github.ref }}'
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Writing ${{ inputs.file }} to step summary
2323
shell: bash

.github/actions/nuget/publish-package/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Publish packages to NuGet feed'
1+
name: 'Publish packages to NuGet feed'
22
author: 'Pete Sramek'
33
description: 'Publishes packages in working directory to public NuGet feed'
44
inputs:
@@ -38,10 +38,10 @@ runs:
3838
exit 1
3939
4040
- name: 'Checkout ${{ github.head_ref || github.ref }}'
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
- name: Download package artifact
44-
uses: actions/download-artifact@v5
44+
uses: actions/download-artifact@v8
4545
with:
4646
name: ${{ inputs.package-artifact-name }}
4747

.github/actions/source/compile/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Compile source code'
1+
name: 'Compile source code'
22
author: 'Pete Sramek'
33
description: 'Compiles source code, uploads build artifacts.'
44
inputs:
@@ -50,7 +50,7 @@ runs:
5050
using: "composite"
5151
steps:
5252
- name: 'Checkout ${{ github.head_ref || github.ref }}'
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454

5555
- name: 'Setup .NET ${{ inputs.dotnet_sdk_version }}'
5656
uses: actions/setup-dotnet@v4
@@ -68,7 +68,7 @@ runs:
6868

6969
- name: 'Upload build artifacts'
7070
if: ${{ inputs.upload-build-artifacts == 'true' }}
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v7
7272
with:
7373
name: ${{ inputs.build-artifacts-name }}
7474
path: ${{ inputs.build-artifacts-glob-pattern }}

.github/actions/source/format/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Format source code'
1+
name: 'Format source code'
22
author: 'Pete Sramek'
33
description: 'Formats source code using dotnet format tool. Pushes changes to the current branch.'
44
inputs:
@@ -32,7 +32,7 @@ runs:
3232
using: "composite"
3333
steps:
3434
- name: 'Checkout ${{ github.head_ref || github.ref }}'
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: 'Setup .NET ${{ inputs.dotnet_sdk_version }}'
3838
uses: actions/setup-dotnet@v4

.github/actions/testing/code-coverage/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Test with .NET CLI'
1+
name: 'Test with .NET CLI'
22
author: 'Pete Sramek'
33
description: 'Run tests, collects code coverage, logs test results, uploads test artifacts'
44
inputs:
@@ -24,7 +24,7 @@ runs:
2424
using: composite
2525
steps:
2626
- name: 'Checkout ${{ github.head_ref || github.ref }}'
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: 'Setup .NET ${{ inputs.dotnet_sdk_version }}'
3030
uses: actions/setup-dotnet@v4

.github/actions/testing/test-report/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Generate test report with Liquid Test Reports CLI'
1+
name: 'Generate test report with Liquid Test Reports CLI'
22
author: 'Pete Sramek'
33
description: 'Run tests, collects code coverage, logs test results, uploads test artifacts'
44
inputs:
@@ -25,7 +25,7 @@ runs:
2525
using: composite
2626
steps:
2727
- name: 'Checkout ${{ github.head_ref || github.ref }}'
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929

3030
- name: 'Setup .NET ${{ inputs.dotnet_sdk_version }}'
3131
uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)