File tree Expand file tree Collapse file tree 3 files changed +18
-9
lines changed
Expand file tree Collapse file tree 3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 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 }}
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 }}
Original file line number Diff line number Diff 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
1825env :
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 }}
You can’t perform that action at this time.
0 commit comments