Skip to content

Commit ec1e4ff

Browse files
authored
Merge pull request #6 from IBM/renovate/actions-checkout-5.x
Update actions/checkout action to v5
2 parents 3a963ec + ef18806 commit ec1e4ff

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build-38:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Run release
1313
env:
1414
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
@@ -17,7 +17,7 @@ jobs:
1717
build-39:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Run release
2222
env:
2323
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
@@ -26,7 +26,7 @@ jobs:
2626
build-310:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: Run release
3131
env:
3232
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ jobs:
1010
build-38:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Run unit tests
1515
run: docker build . --target=test --build-arg PYTHON_VERSION=3.8
1616
build-39:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Run unit tests
2121
run: docker build . --target=test --build-arg PYTHON_VERSION=3.9
2222
build-310:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Run unit tests
2727
run: docker build . --target=test --build-arg PYTHON_VERSION=3.10

0 commit comments

Comments
 (0)