-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump actions/checkout from 3 to 4
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]>
- Loading branch information
1 parent
9902e8f
commit 62f7c99
Showing
5 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
runs-on: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
|
@@ -56,7 +56,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
|
@@ -97,7 +97,7 @@ jobs: | |
runtime: [ osx-x64, osx-arm64 ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
matrix: | ||
runtime: [ osx-x64, osx-arm64 ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up dotnet | ||
uses: actions/[email protected] | ||
|
@@ -77,7 +77,7 @@ jobs: | |
runtime: [ osx-x64, osx-arm64 ] | ||
needs: osx-build | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download payload | ||
uses: actions/download-artifact@v3 | ||
|
@@ -136,7 +136,7 @@ jobs: | |
runtime: [ osx-x64, osx-arm64 ] | ||
needs: osx-payload-sign | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set version environment variable | ||
run: echo "VERSION=$(cat VERSION | sed -E 's/.[0-9]+$//')" >> $GITHUB_ENV | ||
|
@@ -180,7 +180,7 @@ jobs: | |
runtime: [ osx-x64, osx-arm64 ] | ||
needs: osx-pack | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download unsigned package | ||
uses: actions/download-artifact@v3 | ||
|
@@ -247,7 +247,7 @@ jobs: | |
runs-on: windows-latest | ||
environment: release | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up dotnet | ||
uses: actions/[email protected] | ||
|
@@ -348,7 +348,7 @@ jobs: | |
name: Build Linux | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
|
@@ -381,7 +381,7 @@ jobs: | |
runs-on: windows-latest | ||
environment: release | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
|
@@ -435,7 +435,7 @@ jobs: | |
name: Build .NET tool | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup .NET | ||
uses: actions/[email protected] | ||
|
@@ -460,7 +460,7 @@ jobs: | |
environment: release | ||
needs: dotnet-tool-build | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download payload | ||
uses: actions/download-artifact@v3 | ||
|
@@ -517,12 +517,12 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: dotnet-tool-payload-sign | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set version environment variable | ||
run: echo "VERSION=$(cat VERSION | sed -E 's/.[0-9]+$//')" >> $GITHUB_ENV | ||
|
||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download signed payload | ||
uses: actions/download-artifact@v3 | ||
|
@@ -554,7 +554,7 @@ jobs: | |
environment: release | ||
needs: dotnet-tool-pack | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download unsigned package | ||
uses: actions/download-artifact@v3 | ||
|
@@ -638,7 +638,7 @@ jobs: | |
runs-on: ${{ matrix.component.os }} | ||
needs: [ osx-sign, win-sign, linux-sign, dotnet-tool-sign ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
|
@@ -700,7 +700,7 @@ jobs: | |
environment: release | ||
needs: [ validate ] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set version environment variable | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters