Skip to content

Commit 065c821

Browse files
authored
fix(tests): update dependencies to fix integration tests (#42)
* chore(integration-tests): update external actions Signed-off-by: Pascal Reeb <pascal.reeb@secretz.io> * chore(tests): update k8s, openbao & go version Signed-off-by: Pascal Reeb <pascal.reeb@secretz.io> * fix(kind): downgrad 1.33.8 => 1.33.7 and 1.34.4 => 1.34.3 Signed-off-by: Pascal Reeb <pascal.reeb@secretz.io> --------- Signed-off-by: Pascal Reeb <pascal.reeb@secretz.io>
1 parent 8d003d1 commit 065c821

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/actions/integration-test/action.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,33 +25,33 @@ inputs:
2525
runs:
2626
using: "composite"
2727
steps:
28-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
29-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
28+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
29+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
3030
- run: sudo npm install -g bats@${{ inputs.bats-version }}
3131
shell: bash
3232
- run: bats -v
3333
shell: bash
3434

35-
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
35+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
3636
with:
3737
python-version: '3.10'
3838
- run: pip install yq
3939
shell: bash
4040

4141
# Checkout this repo.
42-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
42+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4343
with:
4444
path: "openbao-k8s"
4545

4646
# Checkout openbao-helm for acceptance test code.
47-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
47+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4848
with:
4949
repository: "openbao/openbao-helm"
5050
ref: "feat/openbao-agent-injector" # temporary branch used until first release
5151
path: "openbao-helm"
5252

5353
- name: Create Kind Cluster
54-
uses: helm/kind-action@a1b0e391336a6ee6713a0583f8c6240d70863de3 # v1.12.0
54+
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0
5555
with:
5656
cluster_name: ${{ inputs.kind-cluster-name }}
5757
config: openbao-helm/test/kind/config.yaml
@@ -68,7 +68,7 @@ runs:
6868
echo "log_root=${log_root}" >> $GITHUB_OUTPUT
6969
echo "log_artifact_name=${log_artifact_name}" >> $GITHUB_OUTPUT
7070
71-
- uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
71+
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
7272
with:
7373
name: ${{ inputs.tarball-file }}
7474

@@ -103,14 +103,14 @@ runs:
103103
104104
- name: Store kind cluster logs
105105
if: success()
106-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
106+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
107107
with:
108108
name: ${{ steps.create_kind_export_log_root.outputs.log_artifact_name }}
109109
path: ${{ steps.create_kind_export_log_root.outputs.log_root }}
110110

111111
- name: Store kind cluster logs failure
112112
if: failure()
113-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
113+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
114114
with:
115115
name: ${{ steps.create_kind_export_log_root.outputs.log_artifact_name }}-failed
116116
path: ${{ steps.create_kind_export_log_root.outputs.log_root }}

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
- run: echo "setting versions"
3939
outputs:
4040
# openbao-k8s version
41-
K8S_VERSIONS: '["1.31.9", "1.32.5", "1.33.1"]'
42-
OPENBAO_N: "2.3.1"
43-
OPENBAO_N_1: "2.2.2"
44-
OPENBAO_N_2: "2.1.1"
41+
K8S_VERSIONS: '["1.33.7", "1.34.3", "1.35.1"]'
42+
OPENBAO_N: "2.5.0"
43+
OPENBAO_N_1: "2.4.4"
44+
OPENBAO_N_2: "2.3.2"
4545

4646
latest-openbao:
4747
name: openbao:${{ matrix.openbao-version }} kind:${{ matrix.k8s-version }}

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.22.2
1+
1.24.0

0 commit comments

Comments
 (0)