Skip to content

Commit 1a1cb21

Browse files
committed
Merge branch 'tickets/DM-43182'
2 parents b8d5e67 + 0fe914f commit 1a1cb21

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

.github/workflows/build-base.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
STACK_TAG: ${{ inputs.stackTag }}
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Login to GitHub Container Registry
41-
uses: docker/login-action@v2
41+
uses: docker/login-action@v3
4242
with:
4343
registry: ghcr.io
4444
username: ${{ github.actor }}

.github/workflows/build-service.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ on:
88
- '.github/workflows/build-service.yml'
99
- 'pipelines/**'
1010
- 'python/activator/**'
11+
- 'tests/**'
1112
- 'Dockerfile'
1213
pull_request:
1314
paths:
1415
- '.github/workflows/build-service.yml'
1516
- 'pipelines/**'
1617
- 'python/activator/**'
18+
- 'tests/**'
1719
- 'Dockerfile'
1820
workflow_dispatch:
1921

@@ -49,11 +51,11 @@ jobs:
4951
runs-on: ubuntu-latest
5052
steps:
5153
- name: Checkout code
52-
uses: actions/checkout@v3
54+
uses: actions/checkout@v4
5355
- name: Fix permissions
5456
run: chmod -R a+rwX $GITHUB_WORKSPACE
5557
- name: Login to GitHub Container Registry
56-
uses: docker/login-action@v2
58+
uses: docker/login-action@v3
5759
with:
5860
registry: ghcr.io
5961
username: ${{ github.actor }}
@@ -85,9 +87,9 @@ jobs:
8587
BASE_TAG: ${{ matrix.baseTag }}
8688
steps:
8789
- name: Checkout code
88-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
8991
- name: Login to GitHub Container Registry
90-
uses: docker/login-action@v2
92+
uses: docker/login-action@v3
9193
with:
9294
registry: ghcr.io
9395
username: ${{ github.actor }}

.github/workflows/ci-release.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,14 @@ name: Release CI
1313
- "u/**"
1414
tags:
1515
- "*"
16-
pull_request: {}
16+
pull_request:
17+
# Matches build-service.yml
18+
paths:
19+
- '.github/workflows/ci-release.yaml'
20+
- 'pipelines/**'
21+
- 'python/activator/**'
22+
- 'tests/**'
23+
- 'Dockerfile'
1724

1825
env:
1926
# Base tag to run tests against.
@@ -28,13 +35,13 @@ jobs:
2835
|| startsWith(github.head_ref, 'tickets/')
2936
3037
steps:
31-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3239

3340
- name: Fix permissions
3441
run: chmod -R a+rwX $GITHUB_WORKSPACE
3542

3643
- name: Login to GitHub Container Registry
37-
uses: docker/login-action@v2
44+
uses: docker/login-action@v3
3845
with:
3946
registry: ghcr.io
4047
username: ${{ github.actor }}

0 commit comments

Comments
 (0)