Skip to content

Commit

Permalink
use newer artifact versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nxadm committed Oct 1, 2024
1 parent dca422d commit 1a032ae
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/devbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
./actions/download.sh
- name: Archive artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sources
retention-days: 1
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
EXTRA_ENV: ${{ github.event.inputs.extra-env }}
steps:
- name: Retrieve sources
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: sources
- name: Configure core dumps
Expand All @@ -118,7 +118,7 @@ jobs:
for i in $COREDIR/core.*; do mv $i $i-$TAG; echo "CORE=true" >> $GITHUB_ENV; done
- name: Archive coredumps
if: env.CORE == 'true'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coredumps
retention-days: 1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Download tools and sources
run: ./actions/download.sh
- name: Archive artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sources
retention-days: 1
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
CLOUDSMITH_REPOSITORY: nxadm-pkgs/rakudo-pkg
steps:
- name: Retrieve sources
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: sources
- name: Create build environment
Expand All @@ -68,7 +68,7 @@ jobs:
./actions/package.sh
ls -lh $GITHUB_WORKSPACE/packages
- name: Archive packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: packages
retention-days: 1
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Download packages
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: packages
path: packages
Expand All @@ -98,11 +98,11 @@ jobs:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
steps:
- name: Retrieve sources
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: sources
- name: Download packages
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: packages
path: packages
Expand Down

0 comments on commit 1a032ae

Please sign in to comment.