Skip to content

Commit 02e6838

Browse files
epaganonmichaelmcdonnellmw
authored andcommitted
Updates actions to latest versions
1 parent 0bdf847 commit 02e6838

6 files changed

Lines changed: 25 additions & 25 deletions

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ jobs:
4949

5050
steps:
5151
- name: Checkout repo
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v6
5353

5454
- name: Cleanup runner
5555
uses: ./.github/actions/cleanup-runner
5656

5757
- name: Login to GitHub Container Registry
58-
uses: docker/login-action@v3
58+
uses: docker/login-action@v4
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.repository_owner }}
6262
password: ${{ secrets.GITHUB_TOKEN }}
6363

6464
- name: Set up Docker Buildx
65-
uses: docker/setup-buildx-action@v3
65+
uses: docker/setup-buildx-action@v4
6666

6767
- name: Build image locally
68-
uses: docker/build-push-action@v5
68+
uses: docker/build-push-action@v7
6969
with:
7070
platforms: linux/amd64
7171
load: true
@@ -75,7 +75,7 @@ jobs:
7575
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
7676
7777
- name: Set up Python 3
78-
uses: actions/setup-python@v5
78+
uses: actions/setup-python@v6
7979
with:
8080
python-version: "3.10"
8181

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,16 +46,16 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repo
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v6
5050

5151
- name: Cleanup runner
5252
uses: ./.github/actions/cleanup-runner
5353

5454
- name: Set up Docker Buildx
55-
uses: docker/setup-buildx-action@v3
55+
uses: docker/setup-buildx-action@v4
5656

5757
- name: Build image locally
58-
uses: docker/build-push-action@v5
58+
uses: docker/build-push-action@v7
5959
with:
6060
platforms: linux/amd64
6161
context: ${{ env.ALT_PATH }}
@@ -66,7 +66,7 @@ jobs:
6666
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
6767
6868
- name: Set up Python 3
69-
uses: actions/setup-python@v5
69+
uses: actions/setup-python@v6
7070
with:
7171
python-version: "3.10"
7272

.github/workflows/matlab-container-offline-install-build-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,18 +52,18 @@ jobs:
5252

5353
steps:
5454
- name: Checkout repo
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v6
5656

5757
- name: Cleanup runner
5858
uses: ./.github/actions/cleanup-runner
5959

6060
- name: Set up Docker Buildx
61-
uses: docker/setup-buildx-action@v3
61+
uses: docker/setup-buildx-action@v4
6262
with:
6363
driver: docker
6464

6565
- name: Build archive image
66-
uses: docker/build-push-action@v5
66+
uses: docker/build-push-action@v7
6767
with:
6868
platforms: linux/amd64
6969
context: ${{ env.ALT_PATH }}
@@ -76,7 +76,7 @@ jobs:
7676
${{ env.ARCHIVE_BASE_NAME }}:${{ matrix.matlab-release }}
7777
7878
- name: Build final image offline
79-
uses: docker/build-push-action@v5
79+
uses: docker/build-push-action@v7
8080
with:
8181
platforms: linux/amd64
8282
context: ${{ env.ALT_PATH }}
@@ -90,7 +90,7 @@ jobs:
9090
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
9191
9292
- name: Set up Python 3
93-
uses: actions/setup-python@v5
93+
uses: actions/setup-python@v6
9494
with:
9595
python-version: "3.10"
9696

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repo
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555

5656
- name: Cleanup runner
5757
uses: ./.github/actions/cleanup-runner
@@ -62,7 +62,7 @@ jobs:
6262
cp tests/${{ env.ALT_PATH }}/mocks/matlab_installer_input.txt ./${{ env.ALT_PATH }}
6363
6464
- name: Set up Python 3
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@v6
6666
with:
6767
python-version: "3.10"
6868

@@ -76,10 +76,10 @@ jobs:
7676
run: python -m unittest ${{ env.ALT_PATH }}/test_failing_build.py
7777

7878
- name: Set up Docker Buildx
79-
uses: docker/setup-buildx-action@v3
79+
uses: docker/setup-buildx-action@v4
8080

8181
- name: Build image locally
82-
uses: docker/build-push-action@v5
82+
uses: docker/build-push-action@v7
8383
with:
8484
platforms: linux/amd64
8585
context: ${{ env.ALT_PATH }}

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ jobs:
4949

5050
steps:
5151
- name: Checkout repo
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v6
5353

5454
- name: Cleanup runner
5555
uses: ./.github/actions/cleanup-runner
5656

5757
- name: Login to GitHub Container Registry
58-
uses: docker/login-action@v3
58+
uses: docker/login-action@v4
5959
with:
6060
registry: ghcr.io
6161
username: ${{ github.repository_owner }}
6262
password: ${{ secrets.GITHUB_TOKEN }}
6363

6464
- name: Set up Docker Buildx
65-
uses: docker/setup-buildx-action@v3
65+
uses: docker/setup-buildx-action@v4
6666

6767
- name: Build image locally
68-
uses: docker/build-push-action@v5
68+
uses: docker/build-push-action@v7
6969
with:
7070
platforms: linux/amd64
7171
context: ${{ env.ALT_PATH }}
@@ -76,7 +76,7 @@ jobs:
7676
${{ env.IMAGE_BASE_NAME }}:${{ matrix.matlab-release }}
7777
7878
- name: Set up Python 3
79-
uses: actions/setup-python@v5
79+
uses: actions/setup-python@v6
8080
with:
8181
python-version: "3.10"
8282

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repo
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555

5656
- name: Build the Docker image
5757
run: |
@@ -62,7 +62,7 @@ jobs:
6262
./Makefile.ps1 Test -ImageName ${{ env.IMAGE_BASE_NAME }} -Release ${{ matrix.matlab-release }} -Token ${{ secrets.MATLAB_BATCH_TOKEN_EXPIRES_03_2026 }}
6363
6464
- name: Login to GitHub Container Registry
65-
uses: docker/login-action@v3
65+
uses: docker/login-action@v4
6666
with:
6767
registry: ghcr.io
6868
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)