Skip to content
Merged
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
26 changes: 16 additions & 10 deletions .github/workflows/currency-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,12 @@ jobs:


- name: Upload variable.sh and scanner-env.sh via package-cache
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: package-cache
path: package-cache
env:
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 10


build:
Expand All @@ -112,7 +114,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache
path: package-cache
Expand Down Expand Up @@ -161,10 +163,12 @@ jobs:
sudo chmod -R u+rwX,go+rX,go-w package-cache

- name: Upload updated package-cache
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: updated-package-cache
path: package-cache
env:
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 10

wheel_build:
needs: build_info
Expand Down Expand Up @@ -200,7 +204,7 @@ jobs:
#sudo apt install -y jq file python${{ matrix.python-version }}-dev python${{ matrix.python-version }}-pip

- name: Download package-cache from previous step
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache
path: package-cache
Expand Down Expand Up @@ -243,7 +247,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache
path: package-cache
Expand Down Expand Up @@ -296,7 +300,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: updated-package-cache
path: package-cache
Expand Down Expand Up @@ -375,7 +379,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache
path: package-cache
Expand All @@ -401,10 +405,12 @@ jobs:
bash ./gha-script/upload-scripts/upload_docker_image.sh

- name: Upload package-cache with image.tar
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: package-cache-with-image
path: package-cache
env:
ACTIONS_ARTIFACT_UPLOAD_CONCURRENCY: 10

image_scanner:
needs: build_docker
Expand All @@ -414,7 +420,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache-with-image
path: package-cache
Expand Down Expand Up @@ -482,7 +488,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Download package-cache
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: package-cache
path: package-cache
Expand Down