Skip to content

Commit 27a403b

Browse files
Merge pull request #11 from simatic-ax/chore/new_signing_key
chore: update signing key to version 2 and use new v4 actions
2 parents e1c50e1 + 2678835 commit 27a403b

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/package-development-workflow.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: Build and Test
3131
runs-on: ubuntu-24.04
3232
container:
33-
image: ghcr.io/simatic-ax/ci-images/apax-ci-image:3.5.0
33+
image: ghcr.io/simatic-ax/ci-images/apax-ci-image:4.2.0
3434
credentials:
3535
username: ${{ github.actor }}
3636
password: ${{ secrets.GITHUB_TOKEN }}
@@ -42,19 +42,19 @@ jobs:
4242
ref: ${{ inputs.ref != '' && inputs.ref || github.ref }}
4343

4444
- name: Login to required registries
45-
uses: simatic-ax/actions/apax-login@v3
45+
uses: simatic-ax/actions/apax-login@v4
4646
with:
4747
apax-token: ${{ secrets.APAX_TOKEN }}
4848
registries: |
4949
https://npm.pkg.github.com/,${{ secrets.GITHUB_TOKEN }}
5050
5151
- name: Install dependencies
52-
uses: simatic-ax/actions/apax-install@v3
52+
uses: simatic-ax/actions/apax-install@v4
5353
with:
5454
immutable: true
5555

5656
- name: Build source code
57-
uses: simatic-ax/actions/apax-build@v3
57+
uses: simatic-ax/actions/apax-build@v4
5858
with:
5959
apax-build-targets: |
6060
llvm
@@ -64,7 +64,7 @@ jobs:
6464
--log Debug
6565
6666
- name: Test source code
67-
uses: simatic-ax/actions/apax-test@v3
67+
uses: simatic-ax/actions/apax-test@v4
6868
with:
6969
coverage: true
7070
loglevel: debug

.github/workflows/package-release-workflow.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: call-development
2929
runs-on: ubuntu-24.04
3030
container:
31-
image: ghcr.io/simatic-ax/ci-images/apax-ci-image:3.5.0
31+
image: ghcr.io/simatic-ax/ci-images/apax-ci-image:4.2.0
3232
credentials:
3333
username: ${{ github.actor }}
3434
password: ${{ secrets.GITHUB_TOKEN }}
@@ -49,24 +49,25 @@ jobs:
4949
path: bin
5050

5151
- name: Version package
52-
uses: simatic-ax/actions/apax-version@v3
52+
uses: simatic-ax/actions/apax-version@v4
5353
with:
5454
version: ${{ github.event.release.tag_name }}
5555

5656
- name: Package source code
57-
uses: simatic-ax/actions/apax-pack@v3
57+
uses: simatic-ax/actions/apax-pack@v4
5858
with:
59-
key: ${{ secrets.APAX_SIGNKEY }}
59+
key: ${{ secrets.APAX_SIGNKEY_V2 }}
60+
key-version: "v2"
6061

6162
- name: Login to required registries
62-
uses: simatic-ax/actions/apax-login@v3
63+
uses: simatic-ax/actions/apax-login@v4
6364
with:
6465
apax-token: ${{ secrets.APAX_TOKEN }}
6566
registries: |
6667
https://npm.pkg.github.com/,${{ secrets.GITHUB_TOKEN }}
6768
6869
- name: Publish apax package
69-
uses: simatic-ax/actions/apax-publish@v3
70+
uses: simatic-ax/actions/apax-publish@v4
7071
with:
7172
registries: |
72-
https://npm.pkg.github.com
73+
https://npm.pkg.github.com

0 commit comments

Comments
 (0)