Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#14)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Apr 5, 2024
1 parent fb959b8 commit eccf700
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -30,7 +30,7 @@ jobs:
arch: [win-x64, linux-x64, linux-musl-x64]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -56,7 +56,7 @@ jobs:
arch: [osx-x64]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand All @@ -169,7 +169,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
arch: [linux-musl-x64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -35,7 +35,7 @@ jobs:
needs: [ produce-executables ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
needs: [ produce-executables ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-net-tool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
nuget:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
arch: [win-x64, win-x86, win-arm, win-arm64, linux-x64, linux-musl-x64, linux-arm, linux-arm64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -40,7 +40,7 @@ jobs:
matrix:
arch: [osx-x64, osx-arm64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
Expand All @@ -66,7 +66,7 @@ jobs:
needs: [produce-executables, produce-osx-executables]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
needs: [produce-executables, produce-osx-executables]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
needs: [produce-executables, produce-osx-executables]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
needs: [produce-executables, produce-osx-executables]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download executables
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
needs: github-release

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download archives
uses: actions/download-artifact@v4
Expand All @@ -297,7 +297,7 @@ jobs:
needs: github-release

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download archives
uses: actions/download-artifact@v4
Expand Down

0 comments on commit eccf700

Please sign in to comment.