Skip to content

Commit

Permalink
Merge pull request #76 from rajatjindal/update-upload-action
Browse files Browse the repository at this point in the history
update download/upload artifact action
  • Loading branch information
devigned authored Apr 10, 2024
2 parents 76d66c0 + 376c48d commit d67016b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
cd _dist
tar czf containerd-shim-spin-${{ matrix.shims.version }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz containerd-shim-spin-${{ matrix.shims.version }}
- name: upload shim artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: containerd-shim-spin-${{ matrix.shims.version }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}
path: _dist/containerd-shim-spin-${{ matrix.shims.version }}-${{ env.RUNNER_OS }}-${{ matrix.config.arch }}.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
ARCH: x86_64
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
- uses: azure/setup-kubectl@v4
- name: "Install dependencies"
run: |
Expand All @@ -65,7 +65,7 @@ jobs:

- name: upload debug logs
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: debug-logs
path: debug-logs/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "RELEASE_VERSION=$(date +%Y%m%d-%H%M%S)-g$(git rev-parse --short HEAD)" >> $GITHUB_ENV
fi
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: _artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "RELEASE_VERSION=$(date +%Y%m%d-%H%M%S)-g$(git rev-parse --short HEAD)" >> $GITHUB_ENV
fi
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: _artifacts

Expand Down

0 comments on commit d67016b

Please sign in to comment.