Skip to content

Commit 47ffd93

Browse files
authored
(GitHub CI) Bump actions/checkout version in workflows (#1188)
1 parent 0e15f09 commit 47ffd93

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/dockerimage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Build the Docker image
18-
run: docker build -f Dockerfile.CompressImages . -t imgbot
18+
run: docker build -f Dockerfile.CompressImages . -t imgbot

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
dotnet-version: [ '2.1' ]
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
1818
uses: actions/[email protected]
1919
with:
@@ -23,4 +23,4 @@ jobs:
2323
- name: Build
2424
run: dotnet build --configuration Release --no-restore
2525
- name: Test
26-
run: dotnet test --no-restore --verbosity normal
26+
run: dotnet test --no-restore --verbosity normal

0 commit comments

Comments
 (0)