build(deps): bump github.com/docker/buildx from 0.8.1 to 0.18.0 #189
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test Universe" | |
on: | |
push: | |
branches: [main] | |
paths: | |
- '**.sh' | |
- '**.bash' | |
- '**.go' | |
- '**.cue' | |
- '**.bats' | |
- 'Makefile' | |
- 'go.mod' | |
- 'go.sum' | |
- '.github/workflows/test-universe.yml' | |
pull_request: | |
branches: [main] | |
paths: | |
- '**.sh' | |
- '**.bash' | |
- '**.go' | |
- '**.cue' | |
- '**.bats' | |
- 'Makefile' | |
- 'go.mod' | |
- 'go.sum' | |
- '.github/workflows/test-universe.yml' | |
jobs: | |
universe-europa-tests: | |
name: "Universe Tests - Europa" | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: "Check out" | |
uses: actions/checkout@v2 | |
- name: "Set up Go" | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.16 | |
- name: "Install SOPS" | |
run: | | |
sudo curl -L -o /usr/local/bin/sops https://github.com/mozilla/sops/releases/download/v3.7.1/sops-v3.7.1.linux | |
sudo chmod +x /usr/local/bin/sops | |
- name: "Import Dagger private key" | |
env: | |
DAGGER_AGE_KEY: ${{ secrets.DAGGER_AGE_KEY }} | |
run: | | |
mkdir -p ~/.config/sops/age | |
echo "$DAGGER_AGE_KEY" > ~/.config/sops/age/keys.txt | |
- name: "Expose GitHub Runtime" | |
uses: crazy-max/ghaction-github-runtime@v1 | |
- name: Test | |
env: | |
DAGGER_CACHE_TO: "type=gha,mode=max,scope=test-universe" | |
DAGGER_CACHE_FROM: "type=gha,mode=max,scope=test-universe" | |
run: | | |
make universe-test |