From 825fee4ba49664359a68b29630608cbd990d7a41 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 16 Jun 2024 00:48:03 +0000 Subject: [PATCH] Update GitHub Action Versions --- .github/workflows/check-updates.yml | 44 +++++++++++------------ .github/workflows/deploy.yml | 54 ++++++++++++++--------------- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/.github/workflows/check-updates.yml b/.github/workflows/check-updates.yml index c50ce1c..c51ba26 100644 --- a/.github/workflows/check-updates.yml +++ b/.github/workflows/check-updates.yml @@ -1,22 +1,22 @@ -name: Check Update -concurrency: check - -on: - workflow_dispatch: - schedule: - # Automatically run on every Sunday - - cron: '0 0 * * 0' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4.1.6 - with: - token: ${{ secrets.WORKFLOW_SECRET }} - - - name: Check for Update - uses: saadmk11/github-actions-version-updater@v0.8.1 - with: - token: ${{ secrets.WORKFLOW_SECRET }} +name: Check Update +concurrency: check + +on: + workflow_dispatch: + schedule: + # Automatically run on every Sunday + - cron: '0 0 * * 0' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4.1.7 + with: + token: ${{ secrets.WORKFLOW_SECRET }} + + - name: Check for Update + uses: saadmk11/github-actions-version-updater@v0.8.1 + with: + token: ${{ secrets.WORKFLOW_SECRET }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 47dfa7e..bd7d5a7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,27 +1,27 @@ -name: Nuget Build - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4.1.6 - - - name: setup dotnet - uses: actions/setup-dotnet@v4.0.0 - with: - dotnet-version: 8.0.x - - - name: test - run: | - dotnet test --filter Category!=Dependencies - - - name: pack - run: | - dotnet pack -c Release - - - name: publish - run: | - dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }} +name: Nuget Build + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4.1.7 + + - name: setup dotnet + uses: actions/setup-dotnet@v4.0.0 + with: + dotnet-version: 8.0.x + + - name: test + run: | + dotnet test --filter Category!=Dependencies + + - name: pack + run: | + dotnet pack -c Release + + - name: publish + run: | + dotnet nuget push **/*.nupkg --source 'https://api.nuget.org/v3/index.json' --skip-duplicate -k ${{ secrets.nuget }}