Skip to content

Commit

Permalink
ci: added buildx setup to allow gha caching
Browse files Browse the repository at this point in the history
  • Loading branch information
chgl committed Nov 24, 2022
1 parent a97cffe commit 7cd115b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,15 @@ permissions: read-all
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: ["csharp"]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightly-chaos.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: nightly chaos testing

on:
workflow_dispatch: {}
schedule:
# daily at 04:07.
- cron: "07 04 * * *"
Expand All @@ -18,6 +19,9 @@ jobs:
with:
fetch-depth: 0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@dc7b9719a96d48369863986a06765841d7ea23f6 # tag=v2

- name: Build stress testing image
id: build-image
uses: docker/build-push-action@c84f38281176d4c9cdb1626ffafcd6b3911b5d94 # tag=v3
Expand Down

0 comments on commit 7cd115b

Please sign in to comment.