Skip to content

Commit 90c45b8

Browse files
sutaakaropenshift-merge-bot[bot]
authored andcommitted
Update deprecated GitHub actions
1 parent 8298e9e commit 90c45b8

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.github/workflows/coverage-badge.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Set up Python 3.9
17-
uses: actions/setup-python@v2
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: 3.9
2020
- name: Install dependencies
@@ -29,10 +29,10 @@ jobs:
2929
coverage run -m --source=src pytest -v tests/unit_test.py
3030
3131
- name: Coverage Badge
32-
uses: tj-actions/coverage-badge-py@v1.8
32+
uses: tj-actions/coverage-badge-py@v2
3333

3434
- name: Verify Changed files
35-
uses: tj-actions/verify-changed-files@v12
35+
uses: tj-actions/verify-changed-files@v18
3636
id: changed_files
3737
with:
3838
files: coverage.svg

.github/workflows/e2e_tests.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,25 +48,25 @@ jobs:
4848
df -h
4949
5050
- name: Checkout code
51-
uses: actions/checkout@v2
51+
uses: actions/checkout@v4
5252
with:
5353
submodules: recursive
5454

5555
- name: Checkout common repo code
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
repository: 'project-codeflare/codeflare-common'
5959
ref: 'main'
6060
path: 'common'
6161

6262
- name: Checkout CodeFlare operator repository
63-
uses: actions/checkout@v3
63+
uses: actions/checkout@v4
6464
with:
6565
repository: project-codeflare/codeflare-operator
6666
path: codeflare-operator
6767

6868
- name: Set Go
69-
uses: actions/setup-go@v3
69+
uses: actions/setup-go@v5
7070
with:
7171
go-version: v1.20
7272

@@ -142,7 +142,7 @@ jobs:
142142
output-directory: ${CODEFLARE_TEST_OUTPUT_DIR}
143143

144144
- name: Upload logs
145-
uses: actions/upload-artifact@v3
145+
uses: actions/upload-artifact@v4
146146
if: always() && steps.deploy.outcome == 'success'
147147
with:
148148
name: logs

.github/workflows/nightly-image-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout the repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Install Python
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ env.PYTHON_VERSION }}
2626
- name: Install Poetry
@@ -41,7 +41,7 @@ jobs:
4141
working-directory: custom-nb-image
4242
run: docker build -t quay.io/${{ env.QUAY_ORGANIZATION }}/notebook:${{ env.IMAGE_TAG }} .
4343
- name: Login to Quay.io
44-
uses: docker/login-action@v2
44+
uses: docker/login-action@v3
4545
with:
4646
registry: quay.io
4747
username: ${{ secrets.QUAY_ID }}

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container:
1515
image: quay.io/project-codeflare/codeflare-sdk-precommit:v0.0.1
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Run pre-commit checks
2020
run: pre-commit run --all-files

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
PR_BRANCH_NAME: adjustments-release-${{ github.event.inputs.release-version }}
3838
steps:
3939
- name: Checkout the repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
- name: Install Python
42-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ github.event.inputs.python_version }}
4545
- name: Install Poetry

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
container:
1414
image: quay.io/project-codeflare/codeflare-sdk-precommit:v0.0.3
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Install poetry
1818
run: pip install poetry
19-
- uses: actions/setup-python@v4
19+
- uses: actions/setup-python@v5
2020
with:
2121
python-version: '3.8'
2222
- name: Install dependencies

0 commit comments

Comments
 (0)