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 #249

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/build-bionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
needs: Create-AppImage-Bionic
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: Ommpfritt-AppImage
- uses: ncipollo/release-action@v1
Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-18.04
needs: Create-AppImage-Bionic
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: Ommpfritt-AppImage
- run: chmod +x ommpfritt-*.AppImage
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-20.04
needs: Create-AppImage-Bionic
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: Ommpfritt-AppImage
- run: chmod +x ommpfritt-*.AppImage
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-focal-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: omm
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: configure
path: omm-build
Expand All @@ -52,7 +52,7 @@ jobs:
path: omm
fetch-depth: 0
- run: cd omm; current=$(git branch --show-current); git checkout main; git checkout $current;
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: configure
path: omm-build
Expand All @@ -76,7 +76,7 @@ jobs:
path: omm
fetch-depth: 0
- run: cd omm; current=$(git branch --show-current); git checkout main; git checkout $current;
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: configure
path: omm-build
Expand All @@ -98,7 +98,7 @@ jobs:
- uses: actions/checkout@v2
with:
path: omm
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: build
- run: tar -xf omm-build.tar
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
path: omm
fetch-depth: 0
- uses: ./omm/.github/actions/prepare-msys
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: build
- run: cmake -S omm -B $GITHUB_WORKSPACE/omm-build -DBUILD_TESTING=OFF
Expand All @@ -74,7 +74,7 @@ jobs:
with:
path: omm
- uses: ./omm/.github/actions/prepare-msys
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: build
- run: echo "PYTHONPATH=$(python3 -c "import sys; print(';'.join(sys.path))")" >> $GITHUB_ENV
Expand All @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest
needs: package
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: ommpfritt-installer-win2019
- uses: ncipollo/release-action@v1
Expand All @@ -100,7 +100,7 @@ jobs:
run:
shell: pwsh
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: ommpfritt-installer-win2019
- run: ./ommpfritt-*-win64.exe /S /D=$(pwd)\install | Out-Null
Expand Down
Loading