Skip to content

Commit 04d0187

Browse files
authored
chore(ci): Update deps, dependabot (#2)
* feat: dependabot (#1) * Update CI workflow for new Ubuntu and action versions
1 parent f27b0b2 commit 04d0187

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.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: "weekly"

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
os:
36-
- ubuntu-20.04
36+
- ubuntu-24.04
3737
context:
3838
- name: python/3.10-slim
3939
target: root
@@ -48,18 +48,18 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v5
5252

5353
- name: Log in to the Container registry
54-
uses: docker/login-action@v2.1.0
54+
uses: docker/login-action@v3
5555
with:
5656
registry: ${{ env.REGISTRY }}
5757
username: ${{ github.actor }}
5858
password: ${{ secrets.GITHUB_TOKEN }}
5959

6060
- name: Extract metadata (tags, labels) for Docker
6161
id: meta
62-
uses: docker/metadata-action@v4.4.0
62+
uses: docker/metadata-action@v5
6363
with:
6464
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6565
flavor: |
@@ -68,7 +68,7 @@ jobs:
6868
suffix=${{ matrix.context.suffix }}
6969
7070
- name: Build Docker image
71-
uses: docker/build-push-action@v4.0.0
71+
uses: docker/build-push-action@v6
7272
with:
7373
context: ${{ matrix.context.name }}
7474
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)