Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3.5.3 to 4.1.1
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 4.1.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3.5.3...v4.1.1)

---
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
dependabot[bot] authored Oct 18, 2023
1 parent db4ab30 commit 5f2fe22
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
FullSemVer: ${{ steps.gitversion.outputs.FullSemVer }}
PreReleaseTag: ${{ steps.gitversion.outputs.PreReleaseTag }}
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install GitVersion
Expand All @@ -35,7 +35,7 @@ jobs:
matrix:
go-version: ["1.x"]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
Expand All @@ -48,7 +48,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
Expand All @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
needs: [version]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
FullSemVer: ${{ steps.gitversion.outputs.FullSemVer }}
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install GitVersion
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
needs: [version]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
with:
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: windows-2019
needs: [version]
steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Set up Go 1.x
Expand Down

0 comments on commit 5f2fe22

Please sign in to comment.