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

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #5

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
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download Windows binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: attraction-win
- name: Download Linux binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: attraction-lin
- name: Download Mac binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: attraction-mac
- name: Upload beta testing bundle
Expand All @@ -145,7 +145,7 @@ jobs:
needs: build-win
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: attraction-win
- uses: josephbmanley/butler-publish-itchio-action@master
Expand All @@ -163,7 +163,7 @@ jobs:
needs: build-mac
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: attraction-mac
- name: Extract tarball
Expand All @@ -184,7 +184,7 @@ jobs:
needs: build-lin
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: attraction-lin
- name: Extract tarball
Expand All @@ -205,7 +205,7 @@ jobs:
needs: build-web
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: attraction-web
- uses: josephbmanley/butler-publish-itchio-action@master
Expand Down
Loading