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

Keep upload and download artifacts actions versions up to date #2

Merged
merged 1 commit into from
Nov 6, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Quality Assurance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install python3.11 python3.11-dev libgpgme-dev
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get install -y rpm wget git build-essential swig file
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build AppImage
run: |
git config --global --add safe.directory '*'
Expand All @@ -37,7 +37,7 @@ jobs:
# see https://github.com/conda/conda/issues/12250
./appimagecraft-x86_64.AppImage -d /tmp/build
- name: Archive artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: AppImage
path: linuxdeploy-plugin-native_packages*.AppImage*
Expand All @@ -52,7 +52,7 @@ jobs:
- build-appimage
steps:
- name: Download artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
- name: Inspect directory after downloading artifacts
run: ls -alFR
- name: Create release and upload artifacts
Expand Down