Skip to content

Commit

Permalink
Update Dependencies
Browse files Browse the repository at this point in the history
Update all Dependencies:
- Go Packages
- NPM Packages
- Docker Base Images
- GitHub Actions
  • Loading branch information
ricoberger committed Aug 7, 2023
1 parent 291bfcc commit 2ce42b0
Show file tree
Hide file tree
Showing 51 changed files with 6,846 additions and 8,420 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: github/codeql-action/autobuild@v2

- name: Setup
uses: actions/setup-go@v3
uses: actions/setup-go@v4
if: ${{ matrix.language == 'go' }}
with:
go-version-file: go.mod
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/continuous-delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Build and Push Docker Image
id: docker_build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
push: true
context: .
Expand Down Expand Up @@ -77,10 +77,10 @@ jobs:
echo ::set-output name=aliases::${MIKE_ALIASES}
- name: Install Material for MkDocs
run: pip install -Iv mkdocs-material==9.1.15
run: pip install -Iv mkdocs-material==9.1.21

- name: Install PyMdown Extensions
run: pip install -Iv pymdown-extensions==10.0.1
run: pip install -Iv pymdown-extensions==10.1

- name: Install mike
run: pip install -Iv mike==1.1.2
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0

- name: Setup Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: true
Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:

- name: Install Dependencies
run: |
npx lerna init
npm clean-install
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Configure SSH
if: ${{ github.ref == 'refs/heads/main' }}
uses: webfactory/ssh-agent@v0.5.1
uses: webfactory/ssh-agent@v0.8.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

Expand Down
3 changes: 1 addition & 2 deletions app/lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"packages/*"
],
"version": "0.0.0",
"npmClient": "npm",
"useWorkspaces": true
"npmClient": "npm"
}
Loading

0 comments on commit 2ce42b0

Please sign in to comment.