Skip to content

Commit f9a4a46

Browse files
committed
Use RCC source code from elabit/rcc
For now, we use version 17.29.1 with micromamba 1.5.8 from GitHub. We have no other choice, since the RCC source code is no longer available from robocorp/rcc. CMK-21718
1 parent 83d913b commit f9a4a46

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/rcc.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
workflow_call: {}
66

77
env:
8-
RCC_TAG: "v17.18.0" # Update omd/Licenses.csv in the Checkmk repo when changing this.
8+
RCC_REF: "v17.29.1_micromamba_v1.5.8_from_github" # Update omd/Licenses.csv in the Checkmk repo when changing this.
99
GO_VERSION: "1.20.x"
1010
RUBY_VERSION: "2.7"
1111

@@ -32,7 +32,7 @@ jobs:
3232
- id: restore-from-cache
3333
uses: actions/cache/restore@v4
3434
with:
35-
key: rcc-${{ env.RCC_TAG }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
35+
key: rcc-${{ env.RCC_REF }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
3636
path: build
3737
lookup-only: true
3838

@@ -45,8 +45,8 @@ jobs:
4545
steps:
4646
- uses: actions/checkout@v4
4747
with:
48-
repository: robocorp/rcc
49-
ref: ${{ env.RCC_TAG }}
48+
repository: elabit/rcc
49+
ref: ${{ env.RCC_REF }}
5050
- uses: actions/setup-go@v3
5151
with:
5252
go-version: ${{ env.GO_VERSION }}
@@ -57,7 +57,7 @@ jobs:
5757
- run: rake test
5858
- uses: actions/cache/save@v4
5959
with:
60-
key: rcc-${{ env.RCC_TAG }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
60+
key: rcc-${{ env.RCC_REF }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
6161
path: build
6262

6363
upload:
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/cache/restore@v4
7373
with:
7474
path: build
75-
key: rcc-${{ env.RCC_TAG }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
75+
key: rcc-${{ env.RCC_REF }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
7676
fail-on-cache-miss: true
7777
- uses: actions/upload-artifact@v4
7878
with:

0 commit comments

Comments
 (0)