Skip to content

Commit

Permalink
fix: Update version of upload-artifact (getporter#3219)
Browse files Browse the repository at this point in the history
fix: Update upload-artifact action version

Signed-off-by: Kim Christensen <[email protected]>
Signed-off-by: John Cudd <[email protected]>
  • Loading branch information
kichristensen authored and jmcudd committed Sep 21, 2024
1 parent 8b088ae commit c984b48
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
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/[email protected].7
uses: actions/[email protected].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/[email protected].7
uses: actions/[email protected].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/[email protected].7
uses: actions/[email protected].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/[email protected].7
uses: actions/[email protected].8
with:
name: xbuild-bin
path: bin
Expand All @@ -129,7 +129,7 @@ jobs:
- name: checkout
uses: actions/[email protected]
- name: Download Cross-Compiled Porter Binaries
uses: actions/[email protected].7
uses: actions/[email protected].8
with:
name: xbuild-bin
path: bin
Expand Down

0 comments on commit c984b48

Please sign in to comment.