Skip to content

Commit

Permalink
Merge pull request #602 from adrn/actions-update
Browse files Browse the repository at this point in the history
Update versions like a human dependabot
  • Loading branch information
adrn authored Sep 24, 2024
2 parents 7a1e5e0 + 663b12d commit 05780c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
name: "Execute and convert the notebooks to HTML"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4.6.0
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.12

- name: Install dependencies
run: |
Expand All @@ -40,7 +40,7 @@ jobs:
run: |
echo "::set-output name=artifactName::rendered-tutorials"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ steps.nameartifact.outputs.artifactName }}
path: _build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
name: "Execute and convert the notebooks to HTML"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4.6.0
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.12

- name: Install dependencies
run: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
echo "::set-output name=artifactName::rendered-tutorials"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ steps.nameartifact.outputs.artifactName }}
path: _build

0 comments on commit 05780c9

Please sign in to comment.