Skip to content

Commit

Permalink
Update actions in CI (#61)
Browse files Browse the repository at this point in the history
Github is deprecating NodeJS 16 that is present in some of the
old actions we were using.

Moving to use @main
  • Loading branch information
bisho authored Mar 6, 2024
1 parent 880dc35 commit 2c39568
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2c39568

Please sign in to comment.