Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build_beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: '3.12'
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install dependencies
run: pip install -r requirements.txt; pip install pylint==${{ secrets.PYLINT_VERSION }}
- name: Run lint
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
docker push us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:latest

- name: Checkout GitOps Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: PlaidCloud/plaid-tenant-infrastructure
ref: beta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: '3.12'
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install dependencies
run: pip install -r requirements.txt; pip install pylint==${{ secrets.PYLINT_VERSION }}
- name: Run lint
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
docker push us-docker.pkg.dev/plaidcloud-build/us-plaidcloud/redistomp:latest

- name: Checkout GitOps Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: PlaidCloud/plaid-tenant-infrastructure
ref: master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: '3.12'
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Acquire list of changed python files
id: all-python-files
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Build image for scanning
uses: docker/build-push-action@v5
with:
Expand Down
Loading