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

fix: Update version of upload-artifact #3219

Merged
merged 1 commit into from
Sep 17, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: mage build
shell: bash
- name: Publish Native Binaries
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.4.0
with:
name: build-bin
path: "${{ github.workspace }}/bin"
Expand All @@ -56,7 +56,7 @@ jobs:
run: mage XBuildAll
shell: bash
- name: Publish Release Binaries
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.4.0
with:
name: xbuild-bin
path: "${{ github.workspace }}/bin"
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/porter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fi
shell: bash
- name: Publish Native Binaries
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.4.0
with:
name: build-bin
path: "${{ github.workspace }}/bin"
Expand All @@ -58,7 +58,7 @@ jobs:
run: go run mage.go -v XBuildAll
shell: bash
- name: Publish Release Binaries
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.4.0
with:
name: xbuild-bin
path: "${{ github.workspace }}/bin"
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
cache: true
- run: go version
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand All @@ -129,7 +129,7 @@ jobs:
- name: checkout
uses: actions/checkout@v3.5.0
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down
Loading