Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Action Versions #64

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update GitHub Action Versions
github-actions[bot] committed Sep 8, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
florianhofhammer Florian Hofhammer
commit b4ff3dd7789eac02869c15223810335ce68cf010
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].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/[email protected].7

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