-
Notifications
You must be signed in to change notification settings - Fork 0
147 lines (130 loc) · 5.16 KB
/
zxc-retrieve-upstream-versions.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
##
# Copyright (C) 2024 Hedera Hashgraph, LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
name: "ZXC: Retrieve Upstream Versions"
# This reusable component is called by the following workflows:
# - .github/workflows/flow-pull-request-checks.yaml
# - .github/workflows/flow-build-application.yaml
on:
workflow_call:
inputs:
explicit-runner-version:
description: "Runner Version:"
type: string
required: false
default: ""
explicit-hooks-version:
description: "Container Hooks Version:"
type: string
required: false
default: ""
custom-job-label:
description: "Custom Job Label"
type: string
required: false
default: "Check"
outputs:
tag:
description: "Tag Version"
value: ${{ jobs.versions.outputs.tag-version }}
runner:
description: "Runner Version"
value: ${{ jobs.versions.outputs.runner-version }}
hooks:
description: "Container Hooks Version"
value: ${{ jobs.versions.outputs.hooks-version }}
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
versions:
name: ${{ inputs.custom-job-label || 'Check' }}
runs-on: ubuntu-22.04
outputs:
tag-version: ${{ steps.tag.outputs.version }}
runner-version: ${{ steps.runner.outputs.version }}
hooks-version: ${{ steps.hooks.outputs.version }}
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install GH CLI
uses: step-security/setup-gh-cli-action@911a1ad924338cbaed4af8b5f982b605345abb46 # v2.0.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Authorize GH CLI
run: echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
- name: Install JQ CLI
run: |
if ! command -v jq >/dev/null 2>&1; then
echo "::group::Updating APT Repository Indices"
sudo apt update
echo "::endgroup::"
echo "::group::Installing JQ CLI"
sudo apt install -y jq
echo "::endgroup::"
fi
- name: Install SemVer CLI
run: |
echo "::group::Download SemVer Binary"
sudo curl -L -o /usr/local/bin/semver https://raw.githubusercontent.com/fsaintjacques/semver-tool/master/src/semver
echo "::endgroup::"
echo "::group::Change SemVer Binary Permissions"
sudo chmod -v +x /usr/local/bin/semver
echo "::endgroup::"
echo "::group::Show SemVer Binary Version Info"
semver --version
echo "::endgroup::"
- name: Validate Explicit Runner Version
id: explicit-runner
if: ${{ inputs.explicit-runner-version != '' }}
run: |
VERSION="$(semver get release "${{ inputs.explicit-runner-version }}")"
echo "version=${VERSION}" >>"${GITHUB_OUTPUT}"
- name: Retrieve Runner Version
id: runner
run: |
TARGET_TAG="v${{ steps.explicit-runner.outputs.version || '' }}"
[[ "${TARGET_TAG}" == "v" ]] && TARGET_TAG=""
LATEST_TAG="$(gh release view ${TARGET_TAG} -R actions/runner --json tagName | jq -r '.tagName')"
VERSION="$(semver get release ${LATEST_TAG})"
echo "version=${VERSION}" >>"${GITHUB_OUTPUT}"
- name: Validate Explicit Hooks Version
id: explicit-hooks
if: ${{ inputs.explicit-hooks-version != '' }}
run: |
VERSION="$(semver get release "${{ inputs.explicit-hooks-version }}")"
echo "version=${VERSION}" >>"${GITHUB_OUTPUT}"
- name: Retrieve Runner Container Hooks Version
id: hooks
run: |
TARGET_TAG="v${{ steps.explicit-hooks.outputs.version || '' }}"
[[ "${TARGET_TAG}" == "v" ]] && TARGET_TAG=""
LATEST_TAG="$(gh release view ${TARGET_TAG} -R actions/runner-container-hooks --json tagName | jq -r '.tagName')"
VERSION="$(semver get release ${LATEST_TAG})"
echo "version=${VERSION}" >>"${GITHUB_OUTPUT}"
- name: Tag Version Information
id: tag
run: |
RELEASE="$(semver get release "${{ inputs.explicit-runner-version || steps.runner.outputs.version }}")"
BUILD="$(semver get build "${{ inputs.explicit-runner-version || steps.runner.outputs.version }}")"
VERSION="${RELEASE}"
[[ -n "${BUILD}" ]] && VERSION="${VERSION}+${BUILD}"
echo "version=${VERSION}" >>"${GITHUB_OUTPUT}"