Skip to content

Commit

Permalink
Upgrade workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed Sep 28, 2024
1 parent 95f7c57 commit e2fad69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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 @@ -62,7 +62,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 }}/GameFinder*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
$current_version = $env:INPUT_VERSION.StartsWith('v') ? $env:INPUT_VERSION.Substring(1) : $env:INPUT_VERSION
echo "current_version=$current_version" >> $env:GITHUB_OUTPUT
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Print Debug Info
run: dotnet --info
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 e2fad69

Please sign in to comment.