Skip to content

Commit

Permalink
ci: bump action versions to suit node.js 20
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissimon-au committed Mar 13, 2024
1 parent 865685b commit a343027
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/init-dotnet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ runs:
using: composite
steps:
- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
6 changes: 3 additions & 3 deletions .github/actions/upload-reports/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ runs:
to-slug: ${{ inputs.name }}

- name: Upload ${{ inputs.name }} Logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ steps.name-slug.outputs.slug }}-logs-${{ env.DOTNET_VERSION }}-${{ runner.os }}
path: "**/log*.txt"
if-no-files-found: ignore

- name: Upload ${{ inputs.name }} VsCode Logs
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ steps.name-slug.outputs.slug }}-vscode-logs-${{ env.DOTNET_VERSION }}-${{ runner.os }}
path: "**/user-data/logs/**/output_logging*/*"
if-no-files-found: ignore

- name: Upload ${{ inputs.name }} Test Report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ steps.name-slug.outputs.slug }}-test-results-net${{ env.DOTNET_VERSION }}-${{ runner.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/contextive-runtime-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
working-directory: src

- name: Language Server Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Contextive.LanguageServer-${{inputs.dotnet_runtime}}
path: ${{ steps.build.outputs.artifact-path }}
Expand All @@ -55,7 +55,7 @@ jobs:
node-version: 20

- name: Language Server Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: Contextive.LanguageServer-${{ inputs.dotnet_runtime }}
path: src/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/contextive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
java-version: '21'

# - name: Language Server Artifact
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: Contextive.LanguageServer-${{ inputs.dotnet_runtime }}
# path: src/
Expand Down

0 comments on commit a343027

Please sign in to comment.