Skip to content

Commit

Permalink
chore: update versions for actions/setup-dotnet and actions/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
lodicolo authored Nov 2, 2024
1 parent 2b79c08 commit e2d8659
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
submodules: recursive

- name: Cache binaries
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-binaries
with:
key: ${{ runner.os }}-binaries-keys-${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}-${{ hashFiles('Intersect*/**/*.cs*') }}
Expand All @@ -60,12 +60,12 @@ jobs:
- name: Setup dotnet
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 7.0.x

- name: Cache NuGet dependencies
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-nuget
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
with:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
submodules: recursive

- name: Cache binaries
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-binaries
with:
key: ${{ runner.os }}-binaries-${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}-${{ hashFiles('Intersect*/**/*.cs*') }}
Expand All @@ -116,12 +116,12 @@ jobs:
- name: Setup dotnet
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 7.0.x

- name: Cache NuGet dependencies
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-nuget
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
with:
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
submodules: recursive

- name: Cache binaries
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-binaries
with:
key: ${{ runner.os }}-binaries-${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}-${{ hashFiles('Intersect*/**/*.cs*') }}
Expand All @@ -184,12 +184,12 @@ jobs:
- name: Setup dotnet
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 7.0.x

- name: Cache NuGet dependencies
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-nuget
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
with:
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
submodules: recursive

- name: Cache binaries
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-binaries
with:
key: ${{ runner.os }}-binaries-${{ env.VERSION_PREFIX }}${{ env.VERSION_SUFFIX }}-${{ hashFiles('Intersect*/**/*.cs*') }}
Expand All @@ -252,12 +252,12 @@ jobs:
- name: Setup dotnet
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: 7.0.x

- name: Cache NuGet dependencies
uses: actions/cache@v3
uses: actions/cache@v4.1.2
id: cache-nuget
if: steps.cache-binaries.outputs.cache-hit != 'true' || inputs.forceBuild == true || inputs.forceRestore == true
with:
Expand Down

0 comments on commit e2d8659

Please sign in to comment.