Skip to content

Commit

Permalink
Update GitHub Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 30, 2024
1 parent 8097e6a commit f453d43
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 49 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/check-updates.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected].6
with:
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Check for Update
uses: saadmk11/[email protected]
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/[email protected].7
with:
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Check for Update
uses: saadmk11/[email protected]
with:
token: ${{ secrets.WORKFLOW_SECRET }}
54 changes: 27 additions & 27 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: Nuget Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6

- name: setup dotnet
uses: actions/[email protected]
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/[email protected].7

- name: setup dotnet
uses: actions/[email protected]
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 }}

0 comments on commit f453d43

Please sign in to comment.