Skip to content

Commit

Permalink
Merge PR #580.
Browse files Browse the repository at this point in the history
  • Loading branch information
dainnilsson committed Nov 23, 2023
2 parents ca4d326 + 15d7fc3 commit 6734213
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
ARCHFLAGS: -arch x86_64 -arch arm64

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
run: ./scripts/make_pkg.sh

- name: Upload build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ykman-builds-macos
path: dist
8 changes: 4 additions & 4 deletions .github/workflows/source-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -34,7 +34,7 @@ jobs:
mv dist/yubikey_manager-*.whl artifacts/yubikey_manager-$REF.whl
- name: Upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: yubikey-manager-source-package
path: artifacts
Expand All @@ -44,7 +44,7 @@ jobs:
name: Build sphinx documentation

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -63,7 +63,7 @@ jobs:
run: poetry run make -C docs/ html

- name: Upload documentation
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: yubikey-manager-docs
path: docs/_build/html
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
mv dist/ykman dist/ykman-$REF
- name: Upload build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ykman-builds-ubuntu
path: dist
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Poetry
run: pipx install poetry
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
run: .\scripts\make_msi.ps1

- name: Upload build
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ykman-builds-windows
path: dist

0 comments on commit 6734213

Please sign in to comment.