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): update github artifact actions to v4 (major) #78

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: rice embed-go
working-directory: source
- name: Upload Compiled Frontend (rice-box.go)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: static-rice-box
path: ./source
Expand All @@ -114,7 +114,7 @@ jobs:
- uses: actions/checkout@v2

- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: static-rice-box
path: ./source
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
echo "compressed=statping-darwin-${{ matrix.arch }}.tar.gz" >> $GITHUB_ENV

- name: Upload Compiled Statping Binary
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: binaries
path: ./build
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
shell: bash

- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: static-rice-box
path: ./source
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
shell: bash

- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: static-rice-box
path: ./source
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
shell: bash

- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: static-rice-box
path: ./source
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
shell: bash

- name: Download Compiled Frontend (rice-box.go)
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: static-rice-box
path: ./source
Expand Down Expand Up @@ -460,7 +460,7 @@ jobs:
needs: [ data, build, test-postman-sqlite, test-postman-mysql, test-postman-postgres, docker-build ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: binaries
path: binaries
Expand Down