Skip to content

Commit 52c2c54

Browse files
epaganonPrabhakar Kumar
authored andcommitted
Updates the versions used by GitHub Actions.
1 parent dc71095 commit 52c2c54

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repo
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Login to GitHub Container Registry
36-
uses: docker/login-action@v2
36+
uses: docker/login-action@v3
3737
with:
3838
registry: ghcr.io
3939
username: ${{ github.repository_owner }}
4040
password: ${{ secrets.GITHUB_TOKEN }}
4141

4242
- name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@v2
43+
uses: docker/setup-buildx-action@v3
4444

4545
- name: Build image locally
46-
uses: docker/build-push-action@v4
46+
uses: docker/build-push-action@v5
4747
with:
4848
platforms: linux/amd64
4949
load: true
@@ -53,7 +53,7 @@ jobs:
5353
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
5454
5555
- name: Set up Python 3
56-
uses: actions/setup-python@v4
56+
uses: actions/setup-python@v5
5757
with:
5858
python-version: "3.10"
5959

.github/workflows/from-matlab-docker-build-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131

3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Set up Docker Buildx
37-
uses: docker/setup-buildx-action@v2
37+
uses: docker/setup-buildx-action@v3
3838

3939
- name: Build image locally
40-
uses: docker/build-push-action@v4
40+
uses: docker/build-push-action@v5
4141
with:
4242
platforms: linux/amd64
4343
context: ${{ env.ALT_PATH }}
@@ -48,7 +48,7 @@ jobs:
4848
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
4949
5050
- name: Set up Python 3
51-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v5
5252
with:
5353
python-version: "3.10"
5454

.github/workflows/matlab-installer-build-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repo
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
- name: Move matlab-install mock to right location
3939
run: |
4040
cp -r tests/${{ env.ALT_PATH }}/mocks/matlab-install ./${{ env.ALT_PATH }}
4141
cp tests/${{ env.ALT_PATH }}/mocks/matlab_installer_input.txt ./${{ env.ALT_PATH }}
4242
4343
- name: Set up Python 3
44-
uses: actions/setup-python@v4
44+
uses: actions/setup-python@v5
4545
with:
4646
python-version: "3.10"
4747

@@ -55,10 +55,10 @@ jobs:
5555
run: python -m unittest ${{ env.ALT_PATH }}/test_failing_build.py
5656

5757
- name: Set up Docker Buildx
58-
uses: docker/setup-buildx-action@v2
58+
uses: docker/setup-buildx-action@v3
5959

6060
- name: Build image locally
61-
uses: docker/build-push-action@v4
61+
uses: docker/build-push-action@v5
6262
with:
6363
platforms: linux/amd64
6464
context: ${{ env.ALT_PATH }}

.github/workflows/non-interactive-build-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repo
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v2
36+
uses: docker/setup-buildx-action@v3
3737

3838
- name: Build image locally
39-
uses: docker/build-push-action@v4
39+
uses: docker/build-push-action@v5
4040
with:
4141
platforms: linux/amd64
4242
context: ${{ env.ALT_PATH }}
@@ -47,7 +47,7 @@ jobs:
4747
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
4848
4949
- name: Set up Python 3
50-
uses: actions/setup-python@v4
50+
uses: actions/setup-python@v5
5151
with:
5252
python-version: "3.10"
5353

0 commit comments

Comments
 (0)