Skip to content

Commit

Permalink
Transition actions to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutzzz committed Jun 6, 2024
1 parent 0ecb068 commit 1e11085
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
continue-on-error: true

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Check formatting
run: dotnet format --verify-no-changes --severity error
Expand All @@ -26,7 +26,7 @@ jobs:
OS: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Print Debug Info
run: dotnet --info
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
run: dotnet publish other/GameFinder.Example/GameFinder.Example.csproj -o ${{ github.workspace }}/bin/${{ runner.os }} -p:PublishReadyToRun=true -p:PublishSingleFile=true -p:PublishTrimmed=false

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: GameFinder.Example-${{ runner.os }}-${{ github.sha }}
path: ${{ github.workspace }}/bin/${{ runner.os }}/GameCollector*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "current_semver=$current_semver" >> $env:GITHUB_OUTPUT
echo "current_dotnetver=$current_dotnetver" >> $env:GITHUB_OUTPUT
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Print Debug Info
run: dotnet --info
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Download artifact (Linux)
id: download-artifact-linux
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v4
with:
workflow: .github/workflows/ci.yml
branch: main
Expand All @@ -68,7 +68,7 @@ jobs:

- name: Download artifact (Windows)
id: download-artifact-windows
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v4
with:
workflow: .github/workflows/ci.yml
branch: main
Expand All @@ -79,7 +79,7 @@ jobs:

- name: Download artifact (macOS)
id: download-artifact-macos
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v4
with:
workflow: .github/workflows/ci.yml
branch: main
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Validate
shell: bash
Expand Down

0 comments on commit 1e11085

Please sign in to comment.