Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored May 6, 2022
1 parent 1777345 commit 38451d2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build
Expand All @@ -22,15 +22,15 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: dotnet test --logger GitHubActions tests/Sitko.Core.App.Tests/Sitko.Core.App.Tests.csproj

blazor:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install node.js
uses: actions/setup-node@v2
with:
Expand All @@ -51,15 +51,15 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: dotnet test --logger GitHubActions tests/Sitko.Core.Grpc.Client.Tests/Sitko.Core.Grpc.Client.Tests.csproj

imgproxy:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: dotnet test --logger GitHubActions tests/Sitko.Core.ImgProxy.Tests/Sitko.Core.ImgProxy.Tests.csproj

Expand All @@ -69,7 +69,7 @@ jobs:
env:
PUPPETEER_EXECUTABLE_PATH: "/usr/bin/google-chrome-stable"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install chrome
run: |
apt-get update
Expand All @@ -87,7 +87,7 @@ jobs:
nats:
image: nats-streaming:latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests Sitko.Core.Queue
run: dotnet test --logger GitHubActions tests/Sitko.Core.Queue.Test/Sitko.Core.Queue.Tests.csproj
- name: Run tests Sitko.Core.Queue.Nats
Expand All @@ -108,7 +108,7 @@ jobs:
env:
POSTGRES_HOST_AUTH_METHOD: trust
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run EF Core tests
run: dotnet test --logger GitHubActions tests/Sitko.Core.Repository.EntityFrameworkCore.Tests/Sitko.Core.Repository.EntityFrameworkCore.Tests.csproj
- name: Run Remote tests
Expand All @@ -123,7 +123,7 @@ jobs:
sonyflake:
image: titpetric/sonyflake
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: dotnet test --logger GitHubActions tests/Sitko.Core.SonyFlake.Tests/Sitko.Core.SonyFlake.Tests.csproj

Expand All @@ -148,7 +148,7 @@ jobs:
env:
POSTGRES_HOST_AUTH_METHOD: trust
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Sitko.Core.Storage.FileSystem
run: dotnet test --logger GitHubActions tests/Sitko.Core.Storage.FileSystem.Tests/Sitko.Core.Storage.FileSystem.Tests.csproj
- name: Sitko.Core.Storage.S3
Expand All @@ -171,7 +171,7 @@ jobs:
sonyflake:
image: titpetric/sonyflake
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Vault
run: |
curl -fsSL https://apt.releases.hashicorp.com/gpg | apt-key add -
Expand All @@ -191,7 +191,7 @@ jobs:
if: ${{ github.event_name == 'push' }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/sitkoru/actions-container
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Prepare
id: prep
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Push to Nuget
run: find packages -type f -name '*.nupkg' -print0 | xargs -0 -n 10 -P 4 dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_API_KEY }}
- name: Download Sitko.Core
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: "sitkoru/Sitko.Core"
path: proto
Expand Down

0 comments on commit 38451d2

Please sign in to comment.