Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the minor group with 9 updates #97

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bunder-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
type=raw,value=latest

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.2.0
uses: docker/setup-buildx-action@v3.3.0
with:
driver-opts: network=host

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4.1.2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.2.0
uses: docker/setup-buildx-action@v3.3.0

- name: Build dev container
uses: devcontainers/ci@v0.3.1900000348
uses: devcontainers/ci@v0.3.1900000349
22 changes: 11 additions & 11 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2

- name: Setup Node
uses: actions/setup-node@v4.0.0
uses: actions/setup-node@v4.0.2
with:
node-version: 18

Expand All @@ -35,10 +35,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.2

- name: Setup Python
uses: actions/setup-python@v5.0.0
uses: actions/setup-python@v5.1.0
with:
python-version: 3.12

Expand All @@ -52,7 +52,7 @@ jobs:
run: chmod -R +rX site

- name: Upload User Docs Artifact
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.3.1
with:
name: user-docs
path: site
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get docs artifact
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.4
with:
name: user-docs
path: site
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
run: chmod -R +rX bundler/target/doc

- name: Upload Bundler Docs Artifact
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.3.1
with:
name: bundler-docs
path: bundler/target/doc/bundler
Expand All @@ -138,19 +138,19 @@ jobs:
- bundler_build
steps:
- name: Download User Docs Artifact
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.4
with:
name: user-docs
path: docs

- name: Download User Docs Artifact
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.4
with:
name: bundler-docs
path: docs/bundler

- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3.0.0
uses: actions/upload-pages-artifact@v3.0.1
with:
path: docs

Expand All @@ -170,4 +170,4 @@ jobs:

- name: Publish docs to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4.0.2
uses: actions/deploy-pages@v4.0.5
Loading