Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 3 to 4 #558

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-pr-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Check whether tests are enabled for this PR
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Build API docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
name: Build migrations docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
name: Build seed docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Login to GitHub Packages Docker Registry
uses: docker/login-action@v2
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
name: Scan k8s manifests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install kustomize
uses: imranismail/setup-kustomize@v2
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
name: dev
url: https://dev.podkrepi.bg/swagger
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install kubectl
uses: azure/setup-kubectl@v3
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
name: prod
url: https://podkrepi.bg/swagger
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install kubectl
uses: azure/setup-kubectl@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build
uses: docker/build-push-action@v4
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build
uses: docker/build-push-action@v4
Expand All @@ -56,7 +56,7 @@ jobs:
name: Scan k8s manifests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install kustomize
uses: imranismail/setup-kustomize@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-node@v3
Expand Down
Loading