Bump dependencies #548
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
env: | |
Cake_Settings_EnableScriptCache: true | |
Cake_Settings_ShowProcessCommandLine: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
DOTNET_NOLOGO: true | |
DOTNET_ROLL_FORWARD: Major | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
filter: tree:0 | |
show-progress: false | |
- name: Install dotnet | |
uses: actions/[email protected] | |
with: | |
# renovate: datasource=dotnet depName=dotnet-sdk | |
dotnet-version: 8.0.404 | |
- name: Docker login | |
if: github.event_name != 'pull_request' | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Setup qemu | |
uses: docker/[email protected] | |
with: | |
platforms: arm64 | |
- name: Setup buildx | |
uses: docker/[email protected] | |
- name: Export runtime | |
uses: crazy-max/[email protected] | |
- name: Cake build | |
run: dotnet tool restore && dotnet cake --verbosity=verbose --publish=true |