Skip to content

Commit

Permalink
Update actions/checkout action to v4 (#245)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 12, 2023
1 parent a910487 commit 158f546
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aws-oidc-deploy-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
SKIP_TAG_CHECK: true
steps:
- name: Check out branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python 3.7
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/azure-saml-ses-deploy-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
SKIP_TAG_CHECK: true
steps:
- name: Check out branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Login to Azure
run: cloud/azure/bin/cli-login
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_push_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Build civiform-cloud-deployment
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
run: pip install requests

- name: Checkout civiform/cloud-deploy-infra
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: civiform/cloud-deploy-infra
path: cloud-deploy-infra

- name: Checkout civiform/civiform-deploy
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: civiform/civiform-deploy
path: civiform-deploy
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
terraform-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup terraform
uses: hashicorp/setup-terraform@v2

Expand All @@ -31,7 +31,7 @@ jobs:
shell-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run the shell checker
uses: luizm/action-sh-checker@master
env:
Expand All @@ -47,7 +47,7 @@ jobs:
name: python-formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: run YAPF to test if python code is correctly formatted
uses: AlexanderMelde/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_monitoring_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Build monitoring
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_pgadmin_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Build pgadmin
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 158f546

Please sign in to comment.