8000 Bump dependencies · gitfool/cake-docker@fddc66d · GitHub
[go: up one dir, main page]

Skip to content

Bump dependencies

Bump dependencies #652

Workflow file for this run

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/checkout@v4.3.0
with:
fetch-depth: 0
filter: tree:0
show-progress: false
- name: Install dotnet
uses: actions/setup-dotnet@v4.3.1
with:
# renovate: datasource=dotnet depName=dotnet-sdk
dotnet-version: 9.0.304
- name: Docker login
if: github.event_name != 'pull_request'
uses: docker/login-action@v3.5.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Setup qemu
uses: docker/setup-qemu-action@v3.6.0
with:
platforms: arm64
- name: Setup buildx
uses: docker/setup-buildx-action@v3.11.1
- name: Export runtime
uses: crazy-max/ghaction-github-runtime@v3.1.0
- name: Cake build
run: dotnet tool restore && dotnet cake --verbosity=verbose --publish=true
0