fix(deps): update all dependencies
This commit is contained in:
parent
318c8a2f21
commit
2fccf25dbb
2
.github/workflows/add-issues-to-backlog.yml
vendored
2
.github/workflows/add-issues-to-backlog.yml
vendored
@ -10,7 +10,7 @@ jobs:
|
||||
name: Add issue to project
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/add-to-project@v0.4.0
|
||||
- uses: actions/add-to-project@v0.5.0
|
||||
with:
|
||||
project-url: https://github.com/orgs/dagger/projects/2
|
||||
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|
||||
|
10
.github/workflows/auto-release.yml
vendored
10
.github/workflows/auto-release.yml
vendored
@ -38,13 +38,13 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Check out"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: "Ensure that all other checks have succeeded"
|
||||
# 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.3
|
||||
with:
|
||||
ref: ${{ github.ref }}
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
@ -74,17 +74,17 @@ jobs:
|
||||
--field sha="$GITHUB_SHA"
|
||||
|
||||
- name: "Fetch new tag"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: "Install Go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
- name: "Release"
|
||||
uses: goreleaser/goreleaser-action@v4
|
||||
uses: goreleaser/goreleaser-action@v5
|
||||
with:
|
||||
args: release --rm-dist --debug
|
||||
env:
|
||||
|
8
.github/workflows/dagger-ci.yml
vendored
8
.github/workflows/dagger-ci.yml
vendored
@ -35,15 +35,15 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Setup Go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
- name: "Expose GitHub Runtime"
|
||||
uses: crazy-max/ghaction-github-runtime@v2
|
||||
uses: crazy-max/ghaction-github-runtime@v3
|
||||
|
||||
# - name: "Set up dagger from source"
|
||||
# run: |
|
||||
@ -51,7 +51,7 @@ jobs:
|
||||
# cp ./cmd/dagger/dagger /usr/local/bin
|
||||
|
||||
- name: "Set up dagger"
|
||||
uses: dagger/dagger-for-github@v3
|
||||
uses: dagger/dagger-for-github@v5
|
||||
with:
|
||||
install-only: true
|
||||
|
||||
|
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
@ -32,17 +32,17 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "Check out"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: "Set up go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
- name: "Expose GitHub Runtime"
|
||||
uses: crazy-max/ghaction-github-runtime@v2
|
||||
uses: crazy-max/ghaction-github-runtime@v3
|
||||
|
||||
# - name: "Set up dagger from source"
|
||||
# run: |
|
||||
@ -50,7 +50,7 @@ jobs:
|
||||
# cp ./cmd/dagger/dagger /usr/local/bin
|
||||
|
||||
- name: "Set up dagger"
|
||||
uses: dagger/dagger-for-github@v3
|
||||
uses: dagger/dagger-for-github@v5
|
||||
with:
|
||||
install-only: true
|
||||
|
||||
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v7
|
||||
- uses: actions/stale@v9
|
||||
with:
|
||||
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."
|
||||
|
6
.github/workflows/test-integration.yml
vendored
6
.github/workflows/test-integration.yml
vendored
@ -36,10 +36,10 @@ jobs:
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- name: "Check out"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Setup Go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
@ -62,7 +62,7 @@ jobs:
|
||||
cp ./tests/age_key.txt ~/.config/dagger/keys.txt
|
||||
|
||||
- name: "Expose GitHub Runtime"
|
||||
uses: crazy-max/ghaction-github-runtime@v2
|
||||
uses: crazy-max/ghaction-github-runtime@v3
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
|
4
.github/workflows/test-unit.yml
vendored
4
.github/workflows/test-unit.yml
vendored
@ -25,10 +25,10 @@ jobs:
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- name: "Check out"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Setup Go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
|
6
.github/workflows/test-universe.yml
vendored
6
.github/workflows/test-universe.yml
vendored
@ -36,10 +36,10 @@ jobs:
|
||||
timeout-minutes: 30
|
||||
steps:
|
||||
- name: "Check out"
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "Set up Go"
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
|
||||
@ -54,7 +54,7 @@ jobs:
|
||||
cp ./tests/age_key.txt ~/.config/sops/age/keys.txt
|
||||
|
||||
- name: "Expose GitHub Runtime"
|
||||
uses: crazy-max/ghaction-github-runtime@v2
|
||||
uses: crazy-max/ghaction-github-runtime@v3
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
|
6
.github/workflows/test-website.yml
vendored
6
.github/workflows/test-website.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Cypress run
|
||||
uses: cypress-io/github-action@v2
|
||||
env:
|
||||
@ -33,13 +33,13 @@ jobs:
|
||||
start: |
|
||||
yarn start
|
||||
working-directory: ./website
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: cypress-screenshots
|
||||
path: website/cypress/screenshots
|
||||
# Test run video was always captured, so this action uses "always()" condition
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: always()
|
||||
with:
|
||||
name: cypress-videos
|
||||
|
8
.github/workflows/todoapp.yml
vendored
8
.github/workflows/todoapp.yml
vendored
@ -30,7 +30,7 @@ jobs:
|
||||
steps:
|
||||
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
# this repository has many commits,
|
||||
# we only care about the last one
|
||||
with:
|
||||
@ -40,7 +40,7 @@ jobs:
|
||||
# so we need to install Go AND
|
||||
# building a dev version of Dagger from source
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v3
|
||||
uses: actions/setup-go@v5
|
||||
with:
|
||||
go-version: 1.16
|
||||
- name: Build dev version of Dagger
|
||||
@ -59,7 +59,7 @@ jobs:
|
||||
steps:
|
||||
|
||||
- name: Clone repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
# this repository has many commits,
|
||||
# we only care about the last one
|
||||
with:
|
||||
@ -67,7 +67,7 @@ jobs:
|
||||
|
||||
- name: dagger do deploy
|
||||
# https://github.com/dagger/dagger-for-github
|
||||
uses: dagger/dagger-for-github@v3
|
||||
uses: dagger/dagger-for-github@v5
|
||||
with:
|
||||
# Use latest Dagger 0.2.x release
|
||||
version: 0.2
|
||||
|
@ -1,6 +1,6 @@
|
||||
# syntax = docker/dockerfile:1.2
|
||||
|
||||
FROM golang:1.19.4-alpine AS build
|
||||
FROM golang:1.21.6-alpine AS build
|
||||
WORKDIR /src
|
||||
RUN apk add --no-cache file
|
||||
ENV GOMODCACHE /root/.cache/gocache
|
||||
|
46
go.mod
46
go.mod
@ -3,43 +3,43 @@ module go.dagger.io/dagger
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
cuelang.org/go v0.4.3
|
||||
cuelang.org/go v0.7.0
|
||||
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/containerd v1.6.15
|
||||
github.com/docker/buildx v0.10.0
|
||||
github.com/docker/distribution v2.8.1+incompatible
|
||||
github.com/go-git/go-git/v5 v5.5.2
|
||||
github.com/containerd/containerd v1.7.12
|
||||
github.com/docker/buildx v0.12.1
|
||||
github.com/docker/distribution v2.8.3+incompatible
|
||||
github.com/go-git/go-git/v5 v5.11.0
|
||||
github.com/gofrs/flock v0.8.1
|
||||
github.com/google/uuid v1.3.0
|
||||
github.com/google/uuid v1.5.0
|
||||
github.com/hashicorp/go-version v1.6.0
|
||||
github.com/mattn/go-colorable v0.1.13
|
||||
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db
|
||||
github.com/mitchellh/go-homedir v1.1.0
|
||||
github.com/moby/buildkit v0.11.0
|
||||
github.com/moby/buildkit v0.12.4
|
||||
github.com/morikuni/aec 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/rs/zerolog v1.28.0
|
||||
github.com/sergi/go-diff v1.2.0
|
||||
github.com/sirupsen/logrus v1.9.0
|
||||
github.com/spf13/cobra v1.6.1
|
||||
github.com/opencontainers/image-spec v1.1.0-rc6
|
||||
github.com/rs/zerolog v1.31.0
|
||||
github.com/sergi/go-diff v1.3.1
|
||||
github.com/sirupsen/logrus v1.9.3
|
||||
github.com/spf13/cobra v1.8.0
|
||||
github.com/spf13/pflag v1.0.5
|
||||
github.com/spf13/viper v1.14.0
|
||||
github.com/stretchr/testify v1.8.2
|
||||
github.com/tonistiigi/fsutil v0.0.0-20230105215944-fb433841cbfa
|
||||
github.com/spf13/viper v1.18.2
|
||||
github.com/stretchr/testify v1.8.4
|
||||
github.com/tonistiigi/fsutil 797bd683d5a2
|
||||
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/exporters/jaeger v1.6.3
|
||||
go.opentelemetry.io/otel/sdk v1.15.1
|
||||
go.opentelemetry.io/otel/trace v1.15.1
|
||||
golang.org/x/mod v0.7.0
|
||||
golang.org/x/sync v0.1.0
|
||||
golang.org/x/term v0.4.0
|
||||
golang.org/x/time v0.3.0
|
||||
google.golang.org/grpc v1.51.0
|
||||
golang.org/x/mod v0.14.0
|
||||
golang.org/x/sync v0.6.0
|
||||
golang.org/x/term v0.16.0
|
||||
golang.org/x/time v0.5.0
|
||||
google.golang.org/grpc v1.60.1
|
||||
gopkg.in/yaml.v3 v3.0.1
|
||||
)
|
||||
|
||||
@ -146,5 +146,5 @@ require (
|
||||
|
||||
replace (
|
||||
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/v25 => github.com/docker/docker v25.0.0
|
||||
)
|
||||
|
@ -4,7 +4,7 @@
|
||||
"test": "bats --report-formatter junit --print-output-on-failure --jobs 4 $(find . -type f -name '*.bats' -not -path '*/node_modules/*')"
|
||||
},
|
||||
"devDependencies": {
|
||||
"bats": "1.8.2",
|
||||
"bats": "1.10.0",
|
||||
"bats-assert": "2.0.0",
|
||||
"bats-support": "0.3.0"
|
||||
}
|
||||
|
@ -12,7 +12,7 @@ bats-support@0.3.0:
|
||||
resolved "https://registry.yarnpkg.com/bats-support/-/bats-support-0.3.0.tgz#a1f6b8878d2a51837911fdffa0750036f60701ef"
|
||||
integrity sha512-z+2WzXbI4OZgLnynydqH8GpI3+DcOtepO66PlK47SfEzTkiuV9hxn9eIQX+uLVFbt2Oqoc7Ky3TJ/N83lqD+cg==
|
||||
|
||||
bats@1.8.2:
|
||||
version "1.8.2"
|
||||
resolved "https://registry.yarnpkg.com/bats/-/bats-1.8.2.tgz#bdbaa7690a18f04291b35144a8ce5435cffb8dc5"
|
||||
integrity sha512-KLUIaPYuIMjqui8MbZmK84+CiwhjFVFAhFy5PXP0prLbkovc5faVzc+Qaowbz76F97zP573JrF31ODFAH7vzhg==
|
||||
bats@1.10.0:
|
||||
version "1.10.0"
|
||||
resolved "https://registry.yarnpkg.com/bats/-/bats-1.10.0.tgz#d22cb6e2d88fd39302167da237d710406d1587ce"
|
||||
integrity sha512-yOQrC7npuCrN+Ic3TyjTjJlzHa0qlK3oEO6VAYPWwFeutx/GmpljIyB6uNSl/UTASyc2w4FgVuA/QMMf9OdsCw==
|
||||
|
@ -19,19 +19,19 @@
|
||||
"@docusaurus/core": "3.1.0",
|
||||
"@docusaurus/preset-classic": "3.1.0",
|
||||
"@mdx-js/react": "3.0.0",
|
||||
"@svgr/webpack": "6.5.1",
|
||||
"amplitude-js": "8.21.3",
|
||||
"clsx": "1.2.1",
|
||||
"docusaurus-plugin-sass": "0.2.3",
|
||||
"@svgr/webpack": "8.1.0",
|
||||
"amplitude-js": "8.21.9",
|
||||
"clsx": "2.1.0",
|
||||
"docusaurus-plugin-sass": "0.2.5",
|
||||
"docusaurus2-dotenv": "1.4.0",
|
||||
"file-loader": "6.2.0",
|
||||
"nprogress": "0.2.0",
|
||||
"querystringify": "2.2.0",
|
||||
"react": "18.2.0",
|
||||
"react-dom": "18.2.0",
|
||||
"react-social-login-buttons": "3.6.1",
|
||||
"remark-code-import": "1.1.1",
|
||||
"sass": "1.57.1",
|
||||
"react-social-login-buttons": "3.9.1",
|
||||
"remark-code-import": "1.2.0",
|
||||
"sass": "1.70.0",
|
||||
"url-loader": "4.1.1"
|
||||
},
|
||||
"browserslist": {
|
||||
@ -47,9 +47,9 @@
|
||||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"concurrently": "7.6.0",
|
||||
"cypress": "12.3.0",
|
||||
"cypress-localstorage-commands": "2.2.2",
|
||||
"start-server-and-test": "1.15.2"
|
||||
"concurrently": "8.2.2",
|
||||
"cypress": "13.6.3",
|
||||
"cypress-localstorage-commands": "2.2.5",
|
||||
"start-server-and-test": "2.0.3"
|
||||
}
|
||||
}
|
||||
|
1302
website/yarn.lock
1302
website/yarn.lock
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user