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

chore(deps): bump actions/download-artifact from 3 to 4 #136

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
12 changes: 6 additions & 6 deletions .github/workflows/build-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
submodules: ${{ inputs.with-submodules }}
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Setup python
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
submodules: ${{ inputs.with-submodules }}
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Setup python
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
fetch-depth: 0
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Scan for Secrets
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
fetch-depth: 0
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Setup python
Expand Down Expand Up @@ -348,7 +348,7 @@ jobs:
fetch-depth: 0
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Setup SSH Agent
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
submodules: ${{ inputs.with-submodules }}
- name: Download artifact
if: inputs.project-artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.project-artifact }}
- name: Setup python
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ jobs:
with:
cluster_name: ${{ secrets.gke-cluster }}
- name: Download build reference
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-ref
- name: Setup Kubernetes tools
Expand Down Expand Up @@ -326,7 +326,7 @@ jobs:
with:
cluster_name: ${{ secrets.gke-cluster }}
- name: Download build reference
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-ref
- name: Setup Kubernetes tools
Expand Down Expand Up @@ -482,7 +482,7 @@ jobs:
${{ runner.os }}-skaffold-${{ github.sha }}
${{ runner.os }}-skaffold
- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
if: inputs.dist-artifact
with:
name: ${{ inputs.dist-artifact }}
Expand Down Expand Up @@ -585,7 +585,7 @@ jobs:
with:
cluster_name: ${{ secrets.gke-cluster }}
- name: Download build reference
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-ref
- name: Setup Kubernetes tools
Expand Down
Loading