Skip to content

Commit

Permalink
Merge pull request #828 from bp/upgrade_dependencies
Browse files Browse the repository at this point in the history
Upgrading to the latest version of GitHub actions.
  • Loading branch information
andy-beer authored Sep 11, 2024
2 parents 18d53cb + 45a7847 commit a7e8c2e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

Expand All @@ -35,7 +35,7 @@ jobs:
poetry build
- name: Save build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist-artifact
path: dist/
Expand All @@ -47,17 +47,17 @@ jobs:
steps:

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Get build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist-artifact
path: dist/
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
steps:

- name: Get build artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist-artifact
path: dist/
Expand Down

0 comments on commit a7e8c2e

Please sign in to comment.