Skip to content

Commit 3098973

Browse files
authored
chore(workflows): updating to v2.0.2 since it is released (#81)
1 parent 37581d0 commit 3098973

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/create-release-bundle/test-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ echo "Test 2: Dry-run mode with single build"
8686
test2_success=true
8787

8888
cd "$TEST_DIR"
89-
output=$("$SCRIPT_DIR/entrypoint.sh" --project single-project --build-names "single-build:1728052628123" --bundle-name single-bundle --version v2.0.1 --dry-run 2>&1)
89+
output=$("$SCRIPT_DIR/entrypoint.sh" --project single-project --build-names "single-build:1728052628123" --bundle-name single-bundle --version v2.0.2 --dry-run 2>&1)
9090

9191
if ! echo "$output" | grep -q "Would execute create-release-bundle workflow"; then
9292
test2_success=false

.github/workflows/example_reusable-integration.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# a single workflow that can be instrumented in the future.
5252
# This is also an example of using a matrix strategy to build in GHA
5353
build-packages:
54-
uses: aerospike/shared-workflows/.github/workflows/[email protected].1 #update to 2.0.2 once released
54+
uses: aerospike/shared-workflows/.github/workflows/[email protected].2
5555
needs: extract-version
5656
# Matrix strategy: Multi-platform builds across Ubuntu/Debian/RPM families (x86_64 native, ARM64 emulated)
5757
strategy:
@@ -132,7 +132,7 @@ jobs:
132132
jf-build-name: test-build
133133
jf-build-id: ${{ github.run_number }}-buildinfo-${{ matrix.distro }}-${{ matrix.arch }}
134134
gh-checkout-path: project-location # In the case of running in shared_workflows gh_checkout_path and gh_source_path will have the same content but we put them here by way of example.
135-
# gh-workflows-ref: v2.0.1 #update to 2.0.2 once released # Use specific shared-workflows version
135+
# gh-workflows-ref: v2.0.2
136136
gh-source-path: repo-source
137137
working-directory: repo-source/.github/workflows/execute-build/test_apps/hi
138138
build-script: |
@@ -184,7 +184,7 @@ jobs:
184184
retention-days: 1
185185
sign-artifacts:
186186
needs: package-built-artifacts
187-
uses: aerospike/shared-workflows/.github/workflows/[email protected].1 #update to 2.0.2 once released
187+
uses: aerospike/shared-workflows/.github/workflows/[email protected].2 #update to 2.0.2 once released
188188
with:
189189
gh-retention-days: 1
190190
gh-artifact-name: packaged-artifacts
@@ -196,7 +196,7 @@ jobs:
196196

197197
deploy-artifacts:
198198
needs: [sign-artifacts, extract-version]
199-
uses: aerospike/shared-workflows/.github/workflows/[email protected].1 #update to 2.0.2 once released
199+
uses: aerospike/shared-workflows/.github/workflows/[email protected].2
200200
with:
201201
jf-project: test
202202
jf-build-name: test-build
@@ -210,7 +210,7 @@ jobs:
210210
oidc-audience: aerospike/testing
211211
dry-run: false
212212
build-docker-deploy:
213-
uses: aerospike/shared-workflows/.github/workflows/[email protected].1 #update to 2.0.2 once released
213+
uses: aerospike/shared-workflows/.github/workflows/[email protected].2
214214
needs: extract-version
215215
with:
216216
jf-project: test
@@ -326,7 +326,7 @@ jobs:
326326
gpgkey=https://artifact.aerospike.io/artifactory/api/security/keypair/aerospike/public
327327
EOF
328328
echo "--------------------------------"
329-
cat "$REPO_FILE" | base64
329+
cat "$REPO_FILE"
330330
echo "--------------------------------"
331331
echo "Aerospike .repo file written to $REPO_FILE"
332332
- name: Install RPMs
@@ -336,7 +336,7 @@ jobs:
336336
hi
337337
create-release-bundle:
338338
needs: [use-artifacts, extract-version, deploy-artifacts]
339-
uses: aerospike/shared-workflows/.github/workflows/[email protected].1 #update to 2.0.2 once released
339+
uses: aerospike/shared-workflows/.github/workflows/[email protected].2
340340
if: github.event_name == 'workflow_dispatch'
341341
with:
342342
jf-project: test

.github/workflows/test_sign-deb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
sudo apt-get update && sudo apt-get install dpkg-sig dpkg-dev -y
2929
- name: setup GPG
30-
uses: aerospike/shared-workflows/.github/actions/setup-gpg@a3356acbde7fcda4b9e632b9b4f6ed83ce48b87d # v2.0.1 # replace with v2.0.2 when it is released
30+
uses: aerospike/shared-workflows/.github/actions/[email protected].2
3131
with:
3232
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
3333
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}

.github/workflows/test_sign-file.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v5
1818

1919
- name: setup GPG
20-
uses: aerospike/shared-workflows/.github/actions/setup-gpg@a3356acbde7fcda4b9e632b9b4f6ed83ce48b87d # v2.0.1 # replace with v2.0.2 when it is released
20+
uses: aerospike/shared-workflows/.github/actions/[email protected].2
2121
with:
2222
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
2323
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}

.github/workflows/test_sign-rpm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v5
1818

1919
- name: setup GPG
20-
uses: aerospike/shared-workflows/.github/actions/setup-gpg@a3356acbde7fcda4b9e632b9b4f6ed83ce48b87d # v2.0.1 # replace with v2.0.2 when it is released
20+
uses: aerospike/shared-workflows/.github/actions/[email protected].2
2121
with:
2222
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
2323
gpg-public-key: ${{ secrets.GPG_PUBLIC_KEY }}

0 commit comments

Comments
 (0)