Skip to content

Commit

Permalink
Merge pull request #117 from gitfool/renovate/minor
Browse files Browse the repository at this point in the history
  • Loading branch information
gitfool authored Nov 10, 2024
2 parents 82ad721 + 7852363 commit cbf95b9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"cake.tool": {
"version": "4.0.0",
"version": "4.2.0",
"commands": [
"dotnet-cake"
]
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
container: dockfool/cake-docker:latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Cache packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -46,20 +46,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v4.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -72,20 +72,20 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v4.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand All @@ -98,20 +98,20 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.2.1
uses: actions/checkout@v4.2.2
with:
fetch-depth: 0
filter: tree:0
show-progress: false

- name: Install dotnet
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v4.1.0
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 8.0.403

- name: Cache packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.1.2
with:
path: ${{ env.NUGET_PACKAGES }}
key: ${{ runner.os }}-nuget-${{ hashFiles('.config/dotnet-tools.json', '**/packages.lock.json') }}
Expand Down

0 comments on commit cbf95b9

Please sign in to comment.