From 91516b0316bd0d521457d0cdc8d22f4acf01a5ea Mon Sep 17 00:00:00 2001 From: Rushaway Date: Fri, 1 Mar 2024 19:35:17 +0100 Subject: [PATCH 1/2] feat: dependabot (#1) --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 10c7a82f350b45f2f0065063e5aaa0452e29aa15 Mon Sep 17 00:00:00 2001 From: Rushaway Date: Mon, 8 Sep 2025 16:15:02 +0200 Subject: [PATCH 2/2] Update CI workflow for new Ubuntu and action versions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52ad9da..0c21045 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: fail-fast: false matrix: os: - - ubuntu-20.04 + - ubuntu-24.04 context: - name: python/3.10-slim target: root @@ -48,10 +48,10 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Log in to the Container registry - uses: docker/login-action@v2.1.0 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -59,7 +59,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4.4.0 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} flavor: | @@ -68,7 +68,7 @@ jobs: suffix=${{ matrix.context.suffix }} - name: Build Docker image - uses: docker/build-push-action@v4.0.0 + uses: docker/build-push-action@v6 with: context: ${{ matrix.context.name }} push: ${{ github.event_name != 'pull_request' }}