fix(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Kasper Juul Hermansen 2023-06-30 17:06:35 +00:00
parent e2696fcbda
commit f7fe7d0cf1
15 changed files with 1370 additions and 249 deletions

View File

@ -10,7 +10,7 @@ jobs:
name: Add issue to project name: Add issue to project
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/add-to-project@v0.4.0 - uses: actions/add-to-project@v0.5.0
with: with:
project-url: https://github.com/orgs/dagger/projects/2 project-url: https://github.com/orgs/dagger/projects/2
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

View File

@ -44,7 +44,7 @@ jobs:
- name: "Ensure that all other checks have succeeded" - name: "Ensure that all other checks have succeeded"
# https://github.com/lewagon/wait-on-check-action # https://github.com/lewagon/wait-on-check-action
uses: lewagon/wait-on-check-action@v1.2.0 uses: lewagon/wait-on-check-action@v1.3.1
with: with:
ref: ${{ github.ref }} ref: ${{ github.ref }}
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
@ -79,7 +79,7 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: "Install Go" - name: "Install Go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16

View File

@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16
@ -51,7 +51,7 @@ jobs:
# cp ./cmd/dagger/dagger /usr/local/bin # cp ./cmd/dagger/dagger /usr/local/bin
- name: "Set up dagger" - name: "Set up dagger"
uses: dagger/dagger-for-github@v3 uses: dagger/dagger-for-github@v4
with: with:
install-only: true install-only: true

View File

@ -37,7 +37,7 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- name: "Set up go" - name: "Set up go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16
@ -50,7 +50,7 @@ jobs:
# cp ./cmd/dagger/dagger /usr/local/bin # cp ./cmd/dagger/dagger /usr/local/bin
- name: "Set up dagger" - name: "Set up dagger"
uses: dagger/dagger-for-github@v3 uses: dagger/dagger-for-github@v4
with: with:
install-only: true install-only: true

View File

@ -11,7 +11,7 @@ jobs:
issues: write issues: write
pull-requests: write pull-requests: write
steps: steps:
- uses: actions/stale@v7 - uses: actions/stale@v8
with: with:
stale-pr-label: stale stale-pr-label: stale
stale-pr-message: "This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days." stale-pr-message: "This PR is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days."

View File

@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16

View File

@ -28,7 +28,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: "Setup Go" - name: "Setup Go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16

View File

@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: "Set up Go" - name: "Set up Go"
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16

View File

@ -40,7 +40,7 @@ jobs:
# so we need to install Go AND # so we need to install Go AND
# building a dev version of Dagger from source # building a dev version of Dagger from source
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.16 go-version: 1.16
- name: Build dev version of Dagger - name: Build dev version of Dagger
@ -67,7 +67,7 @@ jobs:
- name: dagger do deploy - name: dagger do deploy
# https://github.com/dagger/dagger-for-github # https://github.com/dagger/dagger-for-github
uses: dagger/dagger-for-github@v3 uses: dagger/dagger-for-github@v4
with: with:
# Use latest Dagger 0.2.x release # Use latest Dagger 0.2.x release
version: 0.2 version: 0.2

View File

@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.2 # syntax = docker/dockerfile:1.2
FROM golang:1.19.4-alpine AS build FROM golang:1.20.5-alpine AS build
WORKDIR /src WORKDIR /src
RUN apk add --no-cache file RUN apk add --no-cache file
ENV GOMODCACHE /root/.cache/gocache ENV GOMODCACHE /root/.cache/gocache

42
go.mod
View File

@ -3,43 +3,43 @@ module go.dagger.io/dagger
go 1.19 go 1.19
require ( require (
cuelang.org/go v0.4.3 cuelang.org/go v0.5.0
github.com/KromDaniel/jonson v0.0.0-20180630143114-d2f9c3c389db github.com/KromDaniel/jonson v0.0.0-20180630143114-d2f9c3c389db
github.com/Microsoft/go-winio v0.6.0 github.com/Microsoft/go-winio v0.6.1
github.com/containerd/console v1.0.3 github.com/containerd/console v1.0.3
github.com/containerd/containerd v1.6.15 github.com/containerd/containerd v1.7.2
github.com/docker/buildx v0.10.0 github.com/docker/buildx v0.11.0
github.com/docker/distribution v2.8.1+incompatible github.com/docker/distribution v2.8.2+incompatible
github.com/go-git/go-git/v5 v5.5.2 github.com/go-git/go-git/v5 v5.7.0
github.com/gofrs/flock v0.8.1 github.com/gofrs/flock v0.8.1
github.com/google/uuid v1.3.0 github.com/google/uuid v1.3.0
github.com/hashicorp/go-version v1.6.0 github.com/hashicorp/go-version v1.6.0
github.com/mattn/go-colorable v0.1.13 github.com/mattn/go-colorable v0.1.13
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/go-homedir v1.1.0
github.com/moby/buildkit v0.11.0 github.com/moby/buildkit v0.11.6
github.com/morikuni/aec v1.0.0 github.com/morikuni/aec v1.0.0
github.com/opencontainers/go-digest v1.0.0 github.com/opencontainers/go-digest v1.0.0
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221116213201-188d3a4e1942 github.com/opencontainers/image-spec v1.1.0-rc4
github.com/rs/zerolog v1.28.0 github.com/rs/zerolog v1.29.1
github.com/sergi/go-diff v1.2.0 github.com/sergi/go-diff v1.3.1
github.com/sirupsen/logrus v1.9.0 github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v1.6.1 github.com/spf13/cobra v1.7.0
github.com/spf13/pflag v1.0.5 github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.14.0 github.com/spf13/viper v1.16.0
github.com/stretchr/testify v1.8.2 github.com/stretchr/testify v1.8.4
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa github.com/tonistiigi/fsutil 36ef4d8c0dbb
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea
github.com/tonistiigi/vt100 v0.0.0-20210615222946-8066bb97264f github.com/tonistiigi/vt100 f9a4f7ef6531
go.opentelemetry.io/otel v1.15.1 go.opentelemetry.io/otel v1.15.1
go.opentelemetry.io/otel/exporters/jaeger v1.6.3 go.opentelemetry.io/otel/exporters/jaeger v1.6.3
go.opentelemetry.io/otel/sdk v1.15.1 go.opentelemetry.io/otel/sdk v1.15.1
go.opentelemetry.io/otel/trace v1.15.1 go.opentelemetry.io/otel/trace v1.15.1
golang.org/x/mod v0.7.0 golang.org/x/mod v0.11.0
golang.org/x/sync v0.1.0 golang.org/x/sync v0.3.0
golang.org/x/term v0.4.0 golang.org/x/term v0.9.0
golang.org/x/time v0.3.0 golang.org/x/time v0.3.0
google.golang.org/grpc v1.51.0 google.golang.org/grpc v1.56.1
gopkg.in/yaml.v3 v3.0.1 gopkg.in/yaml.v3 v3.0.1
) )
@ -146,5 +146,5 @@ require (
replace ( replace (
cuelang.org/go => github.com/dagger/cue v0.4.1-rc.1.0.20220121023213-66df011a52c2 cuelang.org/go => github.com/dagger/cue v0.4.1-rc.1.0.20220121023213-66df011a52c2
github.com/docker/docker => github.com/docker/docker v20.10.22+incompatible github.com/docker/docker/v24 => github.com/docker/docker v24.0.2
) )

View File

@ -4,7 +4,7 @@
"test": "bats --report-formatter junit --print-output-on-failure --jobs 4 $(find . -type f -name '*.bats' -not -path '*/node_modules/*')" "test": "bats --report-formatter junit --print-output-on-failure --jobs 4 $(find . -type f -name '*.bats' -not -path '*/node_modules/*')"
}, },
"devDependencies": { "devDependencies": {
"bats": "1.8.2", "bats": "1.9.0",
"bats-assert": "2.0.0", "bats-assert": "2.0.0",
"bats-support": "0.3.0" "bats-support": "0.3.0"
} }

View File

@ -12,7 +12,7 @@ bats-support@0.3.0:
resolved "https://registry.yarnpkg.com/bats-support/-/bats-support-0.3.0.tgz#a1f6b8878d2a51837911fdffa0750036f60701ef" resolved "https://registry.yarnpkg.com/bats-support/-/bats-support-0.3.0.tgz#a1f6b8878d2a51837911fdffa0750036f60701ef"
integrity sha512-z+2WzXbI4OZgLnynydqH8GpI3+DcOtepO66PlK47SfEzTkiuV9hxn9eIQX+uLVFbt2Oqoc7Ky3TJ/N83lqD+cg== integrity sha512-z+2WzXbI4OZgLnynydqH8GpI3+DcOtepO66PlK47SfEzTkiuV9hxn9eIQX+uLVFbt2Oqoc7Ky3TJ/N83lqD+cg==
bats@1.8.2: bats@1.9.0:
version "1.8.2" version "1.9.0"
resolved "https://registry.yarnpkg.com/bats/-/bats-1.8.2.tgz#bdbaa7690a18f04291b35144a8ce5435cffb8dc5" resolved "https://registry.yarnpkg.com/bats/-/bats-1.9.0.tgz#251a255b58b631f210d75db6ba376a7c2be1b9fd"
integrity sha512-KLUIaPYuIMjqui8MbZmK84+CiwhjFVFAhFy5PXP0prLbkovc5faVzc+Qaowbz76F97zP573JrF31ODFAH7vzhg== integrity sha512-Z5BJaAmmHv/ujj7obhjEzJ//OL+ZtjVq0iRnHu+2fE9OeUaPMbJpBgYiOdNbDrG3E2hqe84/AXNnS/UiXl/UcA==

View File

@ -19,8 +19,8 @@
"@docusaurus/core": "2.4.0", "@docusaurus/core": "2.4.0",
"@docusaurus/preset-classic": "2.4.0", "@docusaurus/preset-classic": "2.4.0",
"@mdx-js/react": "2.3.0", "@mdx-js/react": "2.3.0",
"@svgr/webpack": "6.5.1", "@svgr/webpack": "8.0.1",
"amplitude-js": "8.21.3", "amplitude-js": "8.21.9",
"clsx": "1.2.1", "clsx": "1.2.1",
"docusaurus-plugin-sass": "0.2.3", "docusaurus-plugin-sass": "0.2.3",
"docusaurus2-dotenv": "1.4.0", "docusaurus2-dotenv": "1.4.0",
@ -29,9 +29,9 @@
"querystringify": "2.2.0", "querystringify": "2.2.0",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"react-social-login-buttons": "3.6.1", "react-social-login-buttons": "3.9.1",
"remark-code-import": "1.1.1", "remark-code-import": "1.2.0",
"sass": "1.57.1", "sass": "1.63.6",
"url-loader": "4.1.1" "url-loader": "4.1.1"
}, },
"browserslist": { "browserslist": {
@ -47,9 +47,9 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"concurrently": "7.6.0", "concurrently": "8.2.0",
"cypress": "12.3.0", "cypress": "12.16.0",
"cypress-localstorage-commands": "2.2.2", "cypress-localstorage-commands": "2.2.3",
"start-server-and-test": "1.15.2" "start-server-and-test": "2.0.0"
} }
} }

File diff suppressed because it is too large Load Diff