Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4 (#686)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate-coveooss <382603+renovate-coveooss[bot]@users.noreply.github.com>
  • Loading branch information
renovate-coveooss[bot] and renovate-coveooss authored Sep 14, 2023
1 parent dba46e1 commit 275558d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '1.18'
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run static checks
run: make static
Expand All @@ -23,7 +23,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '1.18'
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: make build

Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '1.18'
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: make fmtcheck

Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: '1.18'
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Terraform
run: |
Expand All @@ -61,7 +61,7 @@ jobs:
goreleaser-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.18'
Expand All @@ -75,7 +75,7 @@ jobs:
goreleaser-test-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # goreleaser needs the whole history to build the release notes
- uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: '1.18'

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We need the whole history so that goreleaser can figure out the changes
fetch-depth: 0
Expand Down

0 comments on commit 275558d

Please sign in to comment.