Skip to content

Commit

Permalink
v38
Browse files Browse the repository at this point in the history
  • Loading branch information
olix0r committed Dec 11, 2022
1 parent 101f152 commit 8925992
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "linkerd-dev",
"image": "ghcr.io/linkerd/dev:v37",
"image": "ghcr.io/linkerd/dev:v38",
"extensions": [
"DavidAnson.vscode-markdownlint",
// "golang.go",
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ be set in a `.devcontainer.json` file. For example:
```jsonc
{
"name": "linkerd-dev",
"image": "ghcr.io/linkerd/dev:v37",
"image": "ghcr.io/linkerd/dev:v38",
"extensions": [
"DavidAnson.vscode-markdownlint",
"golang.go",
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: linkerd/dev/actions/setup-tools@v37
- uses: linkerd/dev/actions/setup-tools@v38
- uses: actions/checkout@v3
- run: just-sh lint
- run: just-dev lint-actions
Expand All @@ -112,7 +112,7 @@ building via docker.
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v37-go
container: ghcr.io/linkerd/dev:v38-go
steps:
- uses: actions/checkout@v3
- run: go mod download
Expand All @@ -137,9 +137,9 @@ jobs:
- v1.25
steps:
# Install just* tooling and Go linters
- uses: linkerd/dev/actions/setup-tools@v37
- uses: linkerd/dev/actions/setup-tools@v38
# Configure the default Go toolchain
- uses: linkerd/dev/actions/setup-go@v37
- uses: linkerd/dev/actions/setup-go@v38
- uses: actions/checkout@v3
- run: just-k3d K3S_CHANNEL=${{ matrix.k8s }} create
- run: go mod download
Expand All @@ -161,7 +161,7 @@ These containers can be used in a workflow like so:
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v37-rust
container: ghcr.io/linkerd/dev:v38-rust
steps:
- uses: actions/checkout@v3
- run: just-cargo fetch
Expand All @@ -175,7 +175,7 @@ Or, to build a static binary:
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v37-rust-musl
container: ghcr.io/linkerd/dev:v38-rust-musl
steps:
- uses: actions/checkout@v3
- run: just-cargo fetch
Expand Down Expand Up @@ -203,9 +203,9 @@ jobs:
K3S_CHANNEL: ${{ matrix.k8s }}
steps:
# Install just* tooling
- uses: linkerd/dev/actions/setup-tools@v37
- uses: linkerd/dev/actions/setup-tools@v38
# Configure the default Rust toolchain
- uses: linkerd/dev/actions/setup-rust@v37
- uses: linkerd/dev/actions/setup-rust@v38
- run: just-k3d create
- run: just-cargo fetch
- run: just-cargo test-build
Expand Down
2 changes: 1 addition & 1 deletion actions/setup-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
# TODO(ver): CI should validate at this version matches the most recent release tag
version:
description: Container image version
default: v37
default: v38

runs:
using: composite
Expand Down

0 comments on commit 8925992

Please sign in to comment.