Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4
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]>
  • Loading branch information
dependabot[bot] authored Oct 1, 2023
1 parent ac0df08 commit edfa5c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- os: windows
arch: 386
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: gacts/setup-go-with-cache@v1
with: {go-version-file: go.mod}
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
name: Build docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- {uses: gacts/github-slug@v1, id: slug}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Gitleaks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with: {fetch-depth: 0}

- name: Check for GitLeaks
Expand All @@ -27,7 +27,7 @@ jobs:
name: Golang-CI (lint)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: gacts/setup-go-with-cache@v1
with: {go-version: 1.19}
Expand All @@ -39,7 +39,7 @@ jobs:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with: {fetch-depth: 2} # Fixes codecov error 'Issue detecting commit SHA'

- uses: gacts/setup-go-with-cache@v1
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
arch: 386
needs: [golangci-lint, go-test]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: gacts/setup-go-with-cache@v1
with: {go-version-file: go.mod}
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
caching-engine: [memory, redis]
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Start redis server
if: matrix.caching-engine == 'redis'
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
needs: [golangci-lint, go-test]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- {uses: gacts/github-slug@v1, id: slug}

Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
caching-engine: [memory, redis]
needs: [docker-image]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create docker network
run: docker network create "app-network"
Expand Down

0 comments on commit edfa5c5

Please sign in to comment.