Skip to content

Commit

Permalink
Update GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sindrehan committed Jan 15, 2025
1 parent a01c922 commit 4c871eb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"

- name: Install Poetry
uses: abatilo/[email protected]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GIT_TOKEN }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Install Poetry
uses: abatilo/[email protected]
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/update-protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ jobs:
Update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GIT_TOKEN }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.13"
- name: Install Poetry
uses: abatilo/[email protected]
with:
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Generate setup.py
run: poetry run invoke generate-setup-py
- name: Add & Commit
uses: EndBug/add-and-commit@v9.1.0
uses: EndBug/add-and-commit@v9
with:
add: "blueye ProtocolDefinitions setup.py"
message: "Update ProtocolDefinitions"
Expand Down

0 comments on commit 4c871eb

Please sign in to comment.