Skip to content

Commit e72d820

Browse files
authored
Merge pull request #128 from CHIMEFRB/update-gha-versions
ci(ci/cd): bump versions of gha steps
2 parents d9ba90a + 4099ace commit e72d820

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/continuous-deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616

1717
- name: Checkout code
1818
if: ${{ steps.release-please.outputs.release_created }}
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 1
2222

2323
- name: Set up Python 3.13
2424
if: ${{ steps.release-please.outputs.release_created }}
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: 3.13
2828

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
Pre-commit-checks:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1919

2020
- name: Set up Python 3.13
2121
uses: actions/setup-python@v6
@@ -31,23 +31,24 @@ jobs:
3131
needs: pre-commit-checks
3232
runs-on: ubuntu-latest
3333
strategy:
34+
fail-fast: false
3435
matrix:
3536
os: [ubuntu-latest]
3637
python-version:
3738
- "3.9"
3839
- "3.11"
3940
- "3.12"
4041
steps:
41-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v6
4243

4344
- name: Set up Python ${{ matrix.python-version }}
44-
uses: actions/setup-python@v5
45+
uses: actions/setup-python@v6
4546
with:
4647
python-version: ${{ matrix.python-version }}
4748

4849
- name: Load cached venv
4950
id: cached-poetry-dependencies
50-
uses: actions/cache@v3
51+
uses: actions/cache@v5
5152
with:
5253
path: |
5354
~/.cache/pypoetry

0 commit comments

Comments
 (0)