Skip to content

Commit e87478a

Browse files
authored
Merge branch 'container2wasm:main' into main
2 parents 67f0df3 + 56e8571 commit e87478a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+7974
-716
lines changed

.github/dependabot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,36 @@ updates:
77
schedule:
88
interval: "daily"
99

10+
# Automatic upgrade for go modules.
11+
- package-ecosystem: "gomod"
12+
directory: "/extras/c2w-net-proxy"
13+
schedule:
14+
interval: "daily"
15+
16+
# Automatic upgrade for go modules.
17+
- package-ecosystem: "gomod"
18+
directory: "/extras/imagemounter"
19+
schedule:
20+
interval: "daily"
21+
22+
# Automatic upgrade for go modules.
23+
- package-ecosystem: "gomod"
24+
directory: "/tests/c2w-net-proxy-test"
25+
schedule:
26+
interval: "daily"
27+
28+
# Automatic upgrade for go modules.
29+
- package-ecosystem: "gomod"
30+
directory: "/tests/imagemounter-test"
31+
schedule:
32+
interval: "daily"
33+
34+
# Automatic upgrade for go modules.
35+
- package-ecosystem: "gomod"
36+
directory: "/tests/wazero"
37+
schedule:
38+
interval: "daily"
39+
1040
# Automatic upgrade for Github Actions
1141
- package-ecosystem: "github-actions"
1242
directory: "/" # means ".github/workflows"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414

1515
jobs:
1616
release:
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
name: Release
1919
env:
2020
OUTPUT_DIR: ${{ github.workspace }}/builds

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
name: Build
1515
steps:
1616
- uses: actions/setup-go@v5
@@ -26,7 +26,7 @@ jobs:
2626
if ldd ./out/c2w-net ; then echo "must be static binary" ; exit 1 ; fi
2727
2828
test:
29-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-24.04
3030
name: Test
3131
strategy:
3232
fail-fast: false
@@ -45,7 +45,7 @@ jobs:
4545
make test
4646
4747
# benchmark:
48-
# runs-on: ubuntu-22.04
48+
# runs-on: ubuntu-24.04
4949
# name: Benchmark
5050
# steps:
5151
# - uses: actions/checkout@v4
@@ -54,19 +54,19 @@ jobs:
5454
# make benchmark
5555

5656
linter:
57-
runs-on: ubuntu-22.04
57+
runs-on: ubuntu-24.04
5858
name: Linter
5959
steps:
6060
- uses: actions/checkout@v4
6161
- name: golangci-lint
6262
uses: golangci/golangci-lint-action@v6
6363
with:
64-
version: v1.61
64+
version: v1.63
6565
args: --verbose
6666

6767
project:
6868
name: Project Checks
69-
runs-on: ubuntu-22.04
69+
runs-on: ubuntu-24.04
7070
steps:
7171
- uses: actions/setup-go@v5
7272
with:

0 commit comments

Comments
 (0)