Skip to content

Commit

Permalink
chore(deps): update github actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jan 18, 2024
1 parent a48d378 commit 74faf88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
clean: 'false'
fetch-depth: '0'
- name: NuGet Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: '${{ github.workspace }}/.nuget/packages'
key: "${{ runner.os }}-nuget-${{ hashFiles('**/Directory.Packages.props') }}-${{ hashFiles('**/Directory.Packages.support.props') }}"
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
dotnet nuke Pack --skip --thisisaothervariable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisanothervariable '${{ vars.THIS_IS_ANOTHER_VARIABLE }}' --this_is_a_variable '${{ vars.THIS_IS_A_VARIABLE }}' --thisisaenv '${{ env.THIS_IS_A_ENV || 'test' }}' --thisisasecret '${{ secrets.THIS_IS_A_SECRET }}' --githubtoken '${{ secrets.GITHUB_TOKEN }}'
- name: 🏺 Publish coverage data
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.2.0
with:
name: 'coverage'
path: 'coverage/'
Expand All @@ -152,19 +152,19 @@ jobs:
name: 'actions-${{ matrix.os }}'
- name: 🏺 Publish logs
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.2.0
with:
name: 'logs'
path: 'artifacts/logs/'
- name: 🏺 Publish test data
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.2.0
with:
name: 'test data'
path: 'artifacts/test/'
- name: 🏺 Publish NuGet Packages
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.2.0
with:
name: 'nuget'
path: 'artifacts/nuget/'
Expand Down

0 comments on commit 74faf88

Please sign in to comment.