Skip to content

Commit 6f8bf32

Browse files
refactor(deps): update all dependencies
1 parent 48652be commit 6f8bf32

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Get Git commit timestamps
6767
run: echo "TIMESTAMP=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
6868
- name: Build Testimage
69-
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
69+
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
7070
env:
7171
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
7272
with:
@@ -77,7 +77,7 @@ jobs:
7777
- name: Run small selftest on build container image
7878
run: docker run -v "./tests/selftest.sh:/selftest.sh" "${{ env.TEST_TAG }}" ./selftest.sh
7979
- name: Build and push
80-
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
80+
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
8181
id: docker-build
8282
env:
8383
SOURCE_DATE_EPOCH: ${{ env.TIMESTAMP }}
@@ -103,15 +103,15 @@ jobs:
103103
COSIGN_PRIVATE_KEY: ${{ secrets.COSIGN_PRIVATE_KEY }}
104104
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }}
105105
- name: Run Trivy vulnerability scanner
106-
uses: aquasecurity/trivy-action@57a97c7e7821a5776cebc9bb87c984fa69cba8f1 # master
106+
uses: aquasecurity/trivy-action@ed142fd0673e97e23eac54620cfb913e5ce36c25 # master
107107
if: ${{ github.event_name != 'pull_request' }}
108108
with:
109109
image-ref: "ghcr.io/anotherstranger/borg-server:sha-${{ github.sha }}"
110110
format: 'sarif'
111111
output: "trivy-results.sarif"
112112
severity: "CRITICAL,HIGH"
113113
- name: Upload Trivy scan results to GitHub Security tab
114-
uses: github/codeql-action/upload-sarif@c10b8064de6f491fea524254123dbe5e09572f13 # v4
114+
uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4
115115
if: ${{ github.event_name != 'pull_request' }}
116116
with:
117117
sarif_file: "trivy-results.sarif"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
fetch-depth: 0
2222
- name: Setup Node.js
23-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
23+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
2424
with:
2525
node-version: "lts/*"
2626
- name: Release

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
output: 'trivy-results-fs.sarif'
2727
severity: 'CRITICAL,HIGH,MEDIUM'
2828
- name: Upload Trivy scan results to GitHub Security tab
29-
uses: github/codeql-action/upload-sarif@c10b8064de6f491fea524254123dbe5e09572f13 # v4
29+
uses: github/codeql-action/upload-sarif@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4
3030
with:
3131
sarif_file: 'trivy-results-fs.sarif'

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: end-of-file-fixer
99
- id: check-added-large-files
1010
- repo: https://github.com/commitizen-tools/commitizen
11-
rev: v4.13.9
11+
rev: v4.13.10
1212
hooks:
1313
- id: commitizen
1414
stages:
@@ -31,14 +31,14 @@ repos:
3131
- "-i"
3232
- "CHANGELOG.md"
3333
- repo: https://github.com/renovatebot/pre-commit-hooks
34-
rev: 43.104.0
34+
rev: 43.132.0
3535
hooks:
3636
- id: renovate-config-validator
3737
- repo: https://github.com/google/yamlfmt.git
3838
rev: v0.21.0
3939
hooks:
4040
- id: yamlfmt
4141
- repo: https://github.com/biomejs/pre-commit
42-
rev: v2.4.10
42+
rev: v2.4.12
4343
hooks:
4444
- id: biome-format

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ARG LIBFFI_VERSION="3.5.2-r0"
4343
# renovate: datasource=repology depName=alpine_3_23/linux-headers versioning=loose
4444
ARG LINUX_HEADERS_VERSION="6.16.12-r0"
4545

46-
FROM python:3.14.3-alpine3.23@sha256:faee120f7885a06fcc9677922331391fa690d911c020abb9e8025ff3d908e510 AS base
46+
FROM python:3.14.4-alpine3.23@sha256:dd4d2bd5b53d9b25a51da13addf2be586beebd5387e289e798e4083d94ca837a AS base
4747

4848
################################################################################
4949
# BUILD BORGBACKUP FROM SOURCE USING PIP #

0 commit comments

Comments
 (0)