Skip to content

Commit b3d223a

Browse files
authored
hof/ci: update formatter version to latest rc, b/c prettier api change (#405)
Co-authored-by: Tony Worm <[email protected]>
1 parent b66339b commit b3d223a

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

.github/workflows/dagger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: dagger
33
- push
44
env:
55
HOF_TELEMETRY_DISABLED: "1"
6-
HOF_FMT_VERSION: v0.6.8
6+
HOF_FMT_VERSION: v0.6.9-rc.2
77
jobs:
88
inception:
99
runs-on: ubuntu-latest

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
run: go install ./cmd/hof
4242
- name: Setup
4343
run: |-
44-
hof fmt start [email protected].9
44+
hof fmt start [email protected].10-rc.2
4545
cd docs
4646
hof mod link
4747
make tools
4848
make deps
4949
- name: Test
5050
run: |-
51-
hof fmt start [email protected].8
51+
hof fmt start [email protected].10-rc.2
5252
cd docs
5353
make gen
5454
make test

.github/workflows/hof.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Start Formatters
7070
run: |-
7171
docker images
72-
hof fmt start @v0.6.9
72+
hof fmt start @v0.6.10-rc.2
7373
hof fmt info
7474
docker ps -a
7575
services: {}

.github/workflows/release-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
run: go install ./cmd/hof
5959
- name: Setup
6060
run: |-
61-
hof fmt start [email protected].9
61+
hof fmt start [email protected].10-rc.2
6262
cd docs
6363
hof mod link
6464
make tools

ci/gha/common/steps.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ Steps: {
263263
setup: {
264264
name: "Setup"
265265
run: """
266-
hof fmt start [email protected].9
266+
hof fmt start [email protected].10-rc.2
267267
cd docs
268268
hof mod link
269269
make tools

ci/gha/dagger.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ghacue.#Workflow & {
1010
on: _ | *["push"]
1111
env: {
1212
HOF_TELEMETRY_DISABLED: "1"
13-
HOF_FMT_VERSION: "v0.6.8"
13+
HOF_FMT_VERSION: "v0.6.9-rc.2"
1414
}
1515
jobs: {
1616
inception: {

ci/gha/docs.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ghacue.#Workflow & {
3333
{
3434
name: "Test"
3535
run: """
36-
hof fmt start [email protected].8
36+
hof fmt start [email protected].10-rc.2
3737
cd docs
3838
make gen
3939
make test

ci/gha/hof.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ghacue.#Workflow & {
5757
name: "Start Formatters"
5858
run: """
5959
docker images
60-
hof fmt start @v0.6.9
60+
hof fmt start @v0.6.10-rc.2
6161
hof fmt info
6262
docker ps -a
6363
"""

formatters/test/rs.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
skip
12
exec hof fmt in.rs -v 1
23
cmp in.rs golden.rs
34

test/dagger/testscripts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func (R *Runtime) SetupTestingEnv(c *dagger.Container, source *dagger.Directory)
3333
c = c.WithEnvVariable("HOF_FMT_VERSION", os.Getenv("HOF_FMT_VERSION"))
3434

3535
// set fmt vars
36-
ver := "v0.6.9" // todo, get this from the version used in the CLI command, consider falling back to some version if dirty or CI?
36+
ver := "v0.6.10-rc.2" // todo, get this from the version used in the CLI command, consider falling back to some version if dirty or CI?
3737
c = c.WithEnvVariable("HOF_FMT_VERSION", ver)
3838
c = c.WithEnvVariable("HOF_FMT_HOST", "http://global-dockerd")
3939

0 commit comments

Comments
 (0)