Skip to content

Commit

Permalink
CI updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Oct 10, 2024
1 parent 4ee2610 commit d6294b6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.*
- name: Clean dependencies
run: |
dotnet clean Mutagen.Bethesda.Serialization.sln -c Release
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/ci-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
same_sha: ${{ steps.check.outputs.same_sha }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -45,7 +45,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.*
- name: Clean dependencies
run: |
dotnet clean Mutagen.Bethesda.Serialization.sln -c Release
Expand Down Expand Up @@ -87,7 +91,7 @@ jobs:
id: current-time
with:
format: YYYYMMDD-HHmmSS
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Clean dependencies
Expand Down Expand Up @@ -122,7 +126,7 @@ jobs:
if: needs.activity-short-circuit.outputs.same_sha == 'false'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Reset nightly to master
Expand Down

0 comments on commit d6294b6

Please sign in to comment.