Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 1, 2023
1 parent b385a0d commit a6defe3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Docker Hub Description
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: peter-evans/dockerhub-description@v3 # Action page: <https://github.com/peter-evans/dockerhub-description>
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: [linux, windows, darwin]
arch: [amd64]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: gacts/setup-node-with-cache@v1
with: {node-version: 19}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
name: 🏗️ Build the docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

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

- uses: gacts/gitleaks@v1
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
container: stoplight/spectral:5.9
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: spectral lint --verbose --fail-severity warn ./api/*.y*ml # Tool page: <https://github.com/stoplightio/spectral>

Expand All @@ -37,7 +37,7 @@ jobs:
env: {FORCE_COLOR: 'true'}
defaults: {run: {working-directory: ./web}}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: gacts/setup-node-with-cache@v1
with: {node-version: 19}
Expand All @@ -56,7 +56,7 @@ jobs:
name: 🧪 Run GolangCI-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 @@ -73,7 +73,7 @@ jobs:
name: 🧪 Run unit-tests (Go)
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 @@ -102,7 +102,7 @@ jobs:
arch: [amd64] # amd64, 386
needs: [validate-openapi, golangci-lint, go-test, build-frontend]
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 @@ -139,7 +139,7 @@ jobs:
runs-on: ubuntu-latest
#needs: [validate-openapi, golangci-lint, go-test, build-frontend] # speed up tests pipeline
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

Expand All @@ -163,7 +163,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build-docker-image]
steps:
- uses: actions/checkout@v3 # is needed for `upload-sarif` action
- uses: actions/checkout@v4 # is needed for `upload-sarif` action

- uses: actions/download-artifact@v3
with: {name: docker-image}
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
options: --health-cmd "redis-cli ping" --health-interval 3s --health-timeout 2s --health-retries 3
needs: [build-app]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with: {name: webhook-tester-linux-amd64}
Expand All @@ -222,7 +222,7 @@ jobs:
options: --health-cmd "redis-cli ping" --health-interval 3s --health-timeout 2s --health-retries 3
needs: [build-docker-image]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with: {name: docker-image}
Expand Down

0 comments on commit a6defe3

Please sign in to comment.