Skip to content

Commit 8288933

Browse files
chore(deps): bump the all-dependencies group across 1 directory with 11 updates
Bumps the all-dependencies group with 11 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `7` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `8` | | [reproducible-containers/buildkit-cache-dance](https://github.com/reproducible-containers/buildkit-cache-dance) | `3.3.0` | `3.4.0` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5` | `7` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `9` | Updates `actions/checkout` from 5 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v7) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `actions/upload-artifact` from 5 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v7) Updates `actions/download-artifact` from 6 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v8) Updates `reproducible-containers/buildkit-cache-dance` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/reproducible-containers/buildkit-cache-dance/releases) - [Commits](reproducible-containers/buildkit-cache-dance@v3.3.0...v3.4.0) Updates `codecov/codecov-action` from 5 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5...v7) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v9) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-dependencies - dependency-name: reproducible-containers/buildkit-cache-dance dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c6ca8ef commit 8288933

6 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- platform: linux/arm64
5050
runner: ubuntu-24.04-arm
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v7
5353

5454
- name: Prepare
5555
run: |
@@ -58,23 +58,23 @@ jobs:
5858
5959
- name: Generate docker tags
6060
id: meta
61-
uses: docker/metadata-action@v5
61+
uses: docker/metadata-action@v6
6262
with:
6363
images: |
6464
ghcr.io/${{ github.repository }}
6565
6666
- name: Setup Docker Buildx
67-
uses: docker/setup-buildx-action@v3
67+
uses: docker/setup-buildx-action@v4
6868

6969
- name: Login to GitHub Container Registry
70-
uses: docker/login-action@v3
70+
uses: docker/login-action@v4
7171
with:
7272
registry: ghcr.io
7373
username: ${{ github.actor }}
7474
password: ${{ secrets.GITHUB_TOKEN }}
7575

7676
- name: Cache Docker layers
77-
uses: actions/cache@v4
77+
uses: actions/cache@v6
7878
with:
7979
path: ${{ runner.temp }}/.buildx-cache
8080
key: ${{ runner.os }}-${{ runner.arch }}-buildx-prod-${{ hashFiles('Pipfile.lock', 'docker/prod.Dockerfile') }}
@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Build and push by digest
9090
id: build
91-
uses: docker/build-push-action@v6
91+
uses: docker/build-push-action@v7
9292
with:
9393
context: .
9494
file: docker/prod.Dockerfile
@@ -108,7 +108,7 @@ jobs:
108108
touch "${{ runner.temp }}/digests/${digest#sha256:}"
109109
110110
- name: Upload digest
111-
uses: actions/upload-artifact@v5
111+
uses: actions/upload-artifact@v7
112112
with:
113113
name: digests-${{ env.PLATFORM_PAIR }}
114114
path: ${{ runner.temp }}/digests/*
@@ -125,30 +125,30 @@ jobs:
125125
name: Merge & Push Manifests
126126
runs-on: ubuntu-24.04
127127
steps:
128-
- uses: actions/checkout@v5
128+
- uses: actions/checkout@v7
129129
with:
130130
fetch-depth: 0
131131

132132
- name: Download digests
133-
uses: actions/download-artifact@v6
133+
uses: actions/download-artifact@v8
134134
with:
135135
path: ${{ runner.temp }}/digests
136136
pattern: digests-*
137137
merge-multiple: true
138138

139139
- name: Login to GitHub Container Registry
140-
uses: docker/login-action@v3
140+
uses: docker/login-action@v4
141141
with:
142142
registry: ghcr.io
143143
username: ${{ github.actor }}
144144
password: ${{ secrets.GITHUB_TOKEN }}
145145

146146
- name: Setup Docker Buildx
147-
uses: docker/setup-buildx-action@v3
147+
uses: docker/setup-buildx-action@v4
148148

149149
- name: Generate docker tags
150150
id: meta
151-
uses: docker/metadata-action@v5
151+
uses: docker/metadata-action@v6
152152
with:
153153
images: |
154154
ghcr.io/${{ github.repository }}

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Build docs
2020
runs-on: ubuntu-24.04-arm
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v7
2323

2424
- name: Install dependencies
2525
run: sudo apt-get install -y libpq-dev
@@ -40,7 +40,7 @@ jobs:
4040
make -C ./docs html
4141
4242
- name: Upload sphinx documentation
43-
uses: actions/upload-artifact@v5
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: sphinx-docs
4646
path: ./docs/_build/html
@@ -54,10 +54,10 @@ jobs:
5454
permissions:
5555
contents: write
5656
steps:
57-
- uses: actions/checkout@v5
57+
- uses: actions/checkout@v7
5858

5959
- name: Download sphinx documentation
60-
uses: actions/download-artifact@v6
60+
uses: actions/download-artifact@v8
6161
with:
6262
name: sphinx-docs
6363
path: ./build

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-24.04-arm
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v7
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Release on Push
1414
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v7
1717
with:
1818
fetch-depth: 0 # Necessary to fetch all tags
1919

.github/workflows/reusable-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
name: Test
1717
runs-on: ubuntu-24.04-arm
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v7
2020

2121
- name: Set up Docker Buildx
22-
uses: docker/setup-buildx-action@v3
22+
uses: docker/setup-buildx-action@v4
2323

2424
- name: Restore Docker layers cache
2525
id: cache-restore
26-
uses: actions/cache/restore@v4
26+
uses: actions/cache/restore@v6
2727
with:
2828
path: |
2929
${{ runner.temp }}/.buildx-cache
@@ -33,7 +33,7 @@ jobs:
3333
${{ runner.os }}-${{ runner.arch }}-buildx-dev-
3434
3535
- name: inject cache into docker
36-
uses: reproducible-containers/buildkit-cache-dance@v3.3.0
36+
uses: reproducible-containers/buildkit-cache-dance@v3.4.0
3737
with:
3838
cache-map: |
3939
{
@@ -77,7 +77,7 @@ jobs:
7777
run: make test-coverage
7878

7979
- name: Upload coverage report
80-
uses: codecov/codecov-action@v5
80+
uses: codecov/codecov-action@v7
8181
env:
8282
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8383

@@ -88,7 +88,7 @@ jobs:
8888
8989
- name: Save Docker layers cache
9090
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' && steps.cache-restore.outputs.cache-hit != 'true' }}
91-
uses: actions/cache/save@v4
91+
uses: actions/cache/save@v6
9292
with:
9393
path: |
9494
${{ runner.temp }}/.buildx-cache
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Upload db artifact
104104
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
105-
uses: actions/upload-artifact@v5
105+
uses: actions/upload-artifact@v7
106106
with:
107107
name: care-db-dump
108108
path: care_db.dump

.github/workflows/validate-pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Validate JIRA Ticket in PR Title
14-
uses: actions/github-script@v7
14+
uses: actions/github-script@v9
1515
with:
1616
github-token: ${{ secrets.GITHUB_TOKEN }}
1717
script: |

0 commit comments

Comments
 (0)