Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions in CI #61

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update actions in CI
Github is deprecating NodeJS 16 that is present in some of the
old actions we were using.

Moving to use @main
bisho committed Mar 6, 2024
commit 220e95a01529ba8f17d2e500368a19167d5078dd
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -11,8 +11,8 @@ jobs:
python-version: ['3.8', '3.11']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
architecture: x64
@@ -28,9 +28,9 @@ jobs:
NODE_ENV: production

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@main
- name: Set up Python 3.11
uses: actions/setup-python@v4
uses: actions/setup-python@main
with:
python-version: '3.11'
architecture: x64
@@ -79,9 +79,9 @@ jobs:
NODE_ENV: production

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@main
- name: Set up Python 3.11
uses: actions/setup-python@v4
uses: actions/setup-python@main
with:
python-version: '3.11'
architecture: x64