Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v3
Browse files Browse the repository at this point in the history
Generated by renovateBot
  • Loading branch information
renovate-bot authored and Daniel Adam committed Apr 1, 2022
1 parent 0f32afd commit 5b6b511
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Go 1.17
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staticAnalysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Go 1.17
uses: actions/setup-go@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-for-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# Checks-out repository under $GITHUB_WORKSPACE
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

# Build everything
- name: Run a build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
# Checks-out repository under $GITHUB_WORKSPACE
- name: Checkout
if: ${{!startsWith(matrix.os, 'ubuntu')}}
uses: actions/checkout@v2
uses: actions/checkout@v3

# Checks-out repository under $GITHUB_WORKSPACE with tags and history (needed by "SonarCloud Scan" step)
- name: Full checkout
if: startsWith(matrix.os,'ubuntu')
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0 # Full clone for SonarCloud

Expand Down

0 comments on commit 5b6b511

Please sign in to comment.