Skip to content

Commit

Permalink
Bump dev container to v43
Browse files Browse the repository at this point in the history
  • Loading branch information
alpeb committed Jun 12, 2024
1 parent dc5155a commit 5db587f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ permissions:
jobs:
lint:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-go
container: ghcr.io/linkerd/dev:v43-go

Check failure on line 17 in .github/workflows/go.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-go'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just go-lint --verbose --timeout=10m

fmt:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-go
container: ghcr.io/linkerd/dev:v43-go

Check failure on line 25 in .github/workflows/go.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-go'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
- run: just go-fmt-check

unit-test:
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-go
container: ghcr.io/linkerd/dev:v43-go

Check failure on line 33 in .github/workflows/go.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-go'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: git config --global --add safe.directory "$PWD" # actions/runner#2033
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-validator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
meta:
timeout-minutes: 15
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-rust
container: ghcr.io/linkerd/dev:v43-rust

Check failure on line 17 in .github/workflows/release-validator.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-rust'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- uses: ./.github/actions/version-mode
Expand All @@ -34,7 +34,7 @@ jobs:
arch: [amd64, arm64, arm]
timeout-minutes: 10
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-rust-musl
container: ghcr.io/linkerd/dev:v43-rust-musl

Check failure on line 37 in .github/workflows/release-validator.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-rust-musl'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: just validator arch=${{ matrix.arch }} profile=release version=${{ needs.meta.outputs.version }} package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
check:
timeout-minutes: 5
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v42-rust
container: ghcr.io/linkerd/dev:v43-rust

Check failure on line 17 in .github/workflows/rust.yml

View workflow job for this annotation

GitHub Actions / devcontainer-versions

Expected image 'ghcr.io/linkerd/dev:v42'; found 'ghcr.io/linkerd/dev:v43-rust'
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- run: just rs-fetch
Expand Down

0 comments on commit 5db587f

Please sign in to comment.