Skip to content

Commit

Permalink
workflow: update action versions in package_build.yml and package_upl…
Browse files Browse the repository at this point in the history
…oad.yml download-artifact@v4upload-artifact@v4 checkout@v4
  • Loading branch information
javierggt committed May 29, 2024
1 parent 1d480eb commit c19f956
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/package_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
shell: bash -l {0}
steps:
- name: Fetch
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Show Inputs
if: ${{ (matrix.os == 'ubuntu-latest') || !inputs.noarch }}
run: |
Expand All @@ -76,14 +76,14 @@ jobs:
echo miniconda_version: \'${{ inputs.miniconda_version }}\'
echo skare3_branch: \'${{ inputs.skare3_branch }}\'
- name: Fetch Skare3
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ (matrix.os == 'ubuntu-latest') || !inputs.noarch }}
with:
repository: sot/skare3
ref: ${{ inputs.skare3_branch }}
path: skare3
- name: Fetch Skare3-tools
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ (matrix.os == 'ubuntu-latest') || !inputs.noarch }}
with:
repository: sot/skare3_tools
Expand Down Expand Up @@ -177,10 +177,10 @@ jobs:
echo "## Packages Built:" >> $GITHUB_STEP_SUMMARY
for f in $files; do echo "- $f" >> $GITHUB_STEP_SUMMARY; done;
- name: Save package
uses: actions/upload-artifact@v2.2.4
uses: actions/upload-artifact@v4
if: ${{ (matrix.os == 'ubuntu-latest') || !inputs.noarch }}
with:
name: conda-package
name: conda-package-${{ matrix.os }}
path: |
builds/noarch/
builds/linux-64/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
name: Update Conda Channel
steps:
- name: Get linux package
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: conda-package
pattern: conda-package-*
path: package
- name: Update channel
run: |
Expand Down

0 comments on commit c19f956

Please sign in to comment.