Skip to content

Commit 21c7b0f

Browse files
committed
upgrade github actions, add dependabot for them
1 parent c2bfb9b commit 21c7b0f

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/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: "daily"

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout the source code
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v3
2121

2222
- name: Run the custom linter
2323
run: ./lint.sh
@@ -36,13 +36,13 @@ jobs:
3636

3737
steps:
3838
- name: Checkout the source code
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040

4141
- name: Build the Docker image
4242
run: docker build -t ghcr.io/${{ github.repository }}/${{ matrix.image }}:latest ${{ matrix.image }}/
4343

4444
- name: Authenticate with GitHub Container Registry
45-
uses: docker/login-action@v1
45+
uses: docker/login-action@v2
4646
with:
4747
registry: ghcr.io
4848
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)