Skip to content

Commit

Permalink
fix(stencil): upgrade modules (2024-08-20) (#68)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Module | Change |
|--------|--------|
|
[github.com/getoutreach/devbase](https://github.com/getoutreach/devbase)
| `v2.27.1-rc.2` -> `v2.28.0-rc.2` |
|
[github.com/getoutreach/stencil-actions](https://github.com/getoutreach/stencil-actions)
| `v0.4.1` -> `v0.4.2-rc.1` |
|
[github.com/getoutreach/stencil-base](https://github.com/getoutreach/stencil-base)
| `v0.16.1-rc.1` -> `v0.16.1` |
|
[github.com/getoutreach/stencil-circleci](https://github.com/getoutreach/stencil-circleci)
| `v1.14.0-rc.1` -> `v1.14.0` |
|
[github.com/getoutreach/stencil-discovery](https://github.com/getoutreach/stencil-discovery)
| `v1.8.4-rc.1` -> `v1.8.5-rc.1` |
|
[github.com/getoutreach/stencil-golang](https://github.com/getoutreach/stencil-golang)
| `v1.23.3-rc.1` -> `v1.24.0-rc.4` |

---

### Release Notes
<details>
<summary>github.com/getoutreach/devbase</summary>
<a
href="https://github.com/getoutreach/devbase/compare/v2.27.1-rc.2...v2.28.0-rc.2">Changes</a>
</details>
<details>
<summary>github.com/getoutreach/stencil-actions</summary>
<a
href="https://github.com/getoutreach/stencil-actions/compare/v0.4.1...v0.4.2-rc.1">Changes</a>
</details>
<details>
<summary>github.com/getoutreach/stencil-base</summary>
<a
href="https://github.com/getoutreach/stencil-base/compare/v0.16.1-rc.1...v0.16.1">Changes</a>
</details>
<details>
<summary>github.com/getoutreach/stencil-circleci</summary>
<a
href="https://github.com/getoutreach/stencil-circleci/compare/v1.14.0-rc.1...v1.14.0">Changes</a>
</details>
<details>
<summary>github.com/getoutreach/stencil-discovery</summary>
<a
href="https://github.com/getoutreach/stencil-discovery/compare/v1.8.4-rc.1...v1.8.5-rc.1">Changes</a>
</details>
<details>
<summary>github.com/getoutreach/stencil-golang</summary>
<a
href="https://github.com/getoutreach/stencil-golang/compare/v1.23.3-rc.1...v1.24.0-rc.4">Changes</a>
</details>

---

This PR was generated by
[stencilbot](https://github.com/getoutreach/dtss-tools).
Feedback/Questions? Reach out to us on
[Slack](https://outreach-hq.slack.com/archives/CN9MU7GLW).

<details>
<summary>Metadata</summary>
<b>Stencil Version</b>: <code>v1.39.1</code>
</details>

Co-authored-by: getoutreach-ci-1[bot] <95656460+getoutreach-ci-1[bot]@users.noreply.github.com>
  • Loading branch information
getoutreach-ci-1[bot] authored Aug 20, 2024
1 parent 223e96f commit 680b383
Show file tree
Hide file tree
Showing 7 changed files with 132 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# syntax, such as anchors, will be fixed automatically.
version: 2.1
orbs:
shared: getoutreach/shared@dev:2.27.1-rc.2
shared: getoutreach/shared@dev:2.28.0-rc.2
queue: eddiewebb/[email protected]
## <<Stencil::Block(CircleCIExtraOrbs)>>

Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# you are reducing compatibility guarantees.
## <<Stencil::Block(toolverOverride)>>
## <</Stencil::Block>>
golang 1.22.0
nodejs 20.12.2
golang 1.22.6
protoc 21.5
nodejs 20.16.0
# Note: Versions in this block do not override the default versions above
# but sometimes you have to declare additional versions of the same tool
# while leaving the 'default' version intact for the infra.
Expand Down
8 changes: 4 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
// Maps the go module cache on the host to the persistent volume used by devspaces.
// These should be the respective values of `go env GOMODCACHE`.
{
"from": "${env:HOME}/.asdf/installs/golang/1.22.0/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.22.0/packages/pkg/mod"
"from": "${env:HOME}/.asdf/installs/golang/1.22.6/packages/pkg/mod",
"to": "/home/dev/.asdf/installs/golang/1.22.6/packages/pkg/mod"
},
{
// Maps the standard library location on the host to the location in the devspace.
// This enables debugging standard library code.
"from": "${env:HOME}/.asdf/installs/golang/1.22.0/go/src",
"to": "/home/dev/.asdf/installs/golang/1.22.0/go/src"
"from": "${env:HOME}/.asdf/installs/golang/1.22.6/go/src",
"to": "/home/dev/.asdf/installs/golang/1.22.6/go/src"
}
]
},
Expand Down
4 changes: 2 additions & 2 deletions cortex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ info:
repo: https://github.com/getoutreach/actions
framework: stencil
language: Golang
stencil_version: v1.39.0-rc.1
golang_version: 1.22.0
stencil_version: v1.39.1
golang_version: 1.22.6
cli: false
service: false
product: Outreach
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/getoutreach/actions

go 1.21
go 1.22

toolchain go1.22.0
toolchain go1.22.6

require (
github.com/bradleyfalzon/ghinstallation/v2 v2.11.0
Expand Down
14 changes: 7 additions & 7 deletions stencil.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: v1.39.0-rc.1
version: v1.39.1
modules:
- name: github.com/getoutreach/devbase
url: https://github.com/getoutreach/devbase
version: v2.27.1-rc.2
version: v2.28.0-rc.2
- name: github.com/getoutreach/stencil-actions
url: https://github.com/getoutreach/stencil-actions
version: v0.4.1
version: v0.4.2-rc.1
- name: github.com/getoutreach/stencil-base
url: https://github.com/getoutreach/stencil-base
version: v0.16.1-rc.1
version: v0.16.1
- name: github.com/getoutreach/stencil-circleci
url: https://github.com/getoutreach/stencil-circleci
version: v1.14.0-rc.1
version: v1.14.0
- name: github.com/getoutreach/stencil-discovery
url: https://github.com/getoutreach/stencil-discovery
version: v1.8.4-rc.1
version: v1.8.5-rc.1
- name: github.com/getoutreach/stencil-golang
url: https://github.com/getoutreach/stencil-golang
version: v1.23.3-rc.1
version: v1.24.0-rc.4
files:
- name: .circleci/config.yml
template: .circleci/config.yml.tpl
Expand Down
Loading

0 comments on commit 680b383

Please sign in to comment.