Skip to content

Commit

Permalink
Merge pull request #2 from PyMoDAQ/gh-actions-update-1728090372
Browse files Browse the repository at this point in the history
Update GitHub Action Versions
  • Loading branch information
seb5g authored Oct 5, 2024
2 parents 0c73f8a + a341c7b commit f3eb97e
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Testbase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Python ${{ inputs.python }}
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0
- name: Install dependencies
uses: actions/setup-python@v4
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ inputs.python }}
- name: Install package
Expand All @@ -34,6 +34,6 @@ jobs:
- name: Run tests
run: pytest --cov -n auto
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/Testbase_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: windows-latest
steps:
- name: Set up Python ${{ inputs.python }}
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0
- name: Install dependencies
uses: actions/setup-python@v4
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ inputs.python }}
- name: Install package
Expand All @@ -30,6 +30,6 @@ jobs:
- name: Run tests
run: pytest --cov -n auto
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v4.6.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.0
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5.2.0
with:
python-version: '3.11'
- name: Install dependencies
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: GitHub Actions Version Updater

# Controls when the action will run.
on:
schedule:
# Automatically run at 00:00 on day-of-month 5.
- cron: '0 0 5 * *'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
# [Required] Access token with `workflow` scope.
name: GitHub Actions Version Updater

# Controls when the action will run.
on:
schedule:
# Automatically run at 00:00 on day-of-month 5.
- cron: '0 0 5 * *'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.2.0
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.8.1
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

0 comments on commit f3eb97e

Please sign in to comment.