Skip to content

Commit 2e4844e

Browse files
chore(deps): Bump the all-actions group with 7 updates
Bumps the all-actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `1` | `3` | | [docker/login-action](https://github.com/docker/login-action) | `1` | `3` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `3` | `5` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `3` | `5` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) Updates `docker/setup-buildx-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v1...v3) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) Updates `docker/metadata-action` from 3 to 5 - [Release notes](https://github.com/docker/metadata-action/releases) - [Upgrade guide](https://github.com/docker/metadata-action/blob/master/UPGRADE.md) - [Commits](docker/metadata-action@v3...v5) Updates `docker/build-push-action` from 3 to 5 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 232b5b0 commit 2e4844e

5 files changed

Lines changed: 19 additions & 19 deletions

File tree

.github/workflows/code-quality-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Format and Lint Check
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Set up Python 3.10
2222
id: setup
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.10'
2626
cache: 'pip'

.github/workflows/manual-publish-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,42 +13,42 @@ jobs:
1313
name: Publish
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Gather image info
1919
id: info
2020
run: |
2121
echo "::set-output name=repo-owner::${GITHUB_REPOSITORY_OWNER,,}"
2222
2323
- name: Cache Docker layers
24-
uses: actions/cache@v3
24+
uses: actions/cache@v4
2525
with:
2626
path: /tmp/.buildx-cache
2727
key: ${{ runner.os }}-buildx-${{ github.sha }}
2828
restore-keys: |
2929
${{ runner.os }}-buildx-
3030
3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v1
32+
uses: docker/setup-buildx-action@v3
3333

3434
- name: Log in to the GitHub Container Registry
35-
uses: docker/login-action@v1
35+
uses: docker/login-action@v3
3636
with:
3737
registry: ghcr.io
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Setup Image Metadata
4242
id: base-meta
43-
uses: docker/metadata-action@v3
43+
uses: docker/metadata-action@v5
4444
with:
4545
images: |
4646
ghcr.io/${{ steps.info.outputs.repo-owner }}/acapy-plugin-pickup
4747
tags: |
4848
type=raw,value=${{ inputs.tag }}
4949
5050
- name: Build and Push Image to ghcr.io
51-
uses: docker/build-push-action@v3
51+
uses: docker/build-push-action@v5
5252
with:
5353
push: true
5454
context: .

.github/workflows/publish-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,34 @@ jobs:
88
name: Publish
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- name: Gather image info
1414
id: info
1515
run: |
1616
echo "::set-output name=repo-owner::${GITHUB_REPOSITORY_OWNER,,}"
1717
1818
- name: Cache Docker layers
19-
uses: actions/cache@v3
19+
uses: actions/cache@v4
2020
with:
2121
path: /tmp/.buildx-cache
2222
key: ${{ runner.os }}-buildx-${{ github.sha }}
2323
restore-keys: |
2424
${{ runner.os }}-buildx-
2525
2626
- name: Set up Docker Buildx
27-
uses: docker/setup-buildx-action@v1
27+
uses: docker/setup-buildx-action@v3
2828

2929
- name: Log in to the GitHub Container Registry
30-
uses: docker/login-action@v1
30+
uses: docker/login-action@v3
3131
with:
3232
registry: ghcr.io
3333
username: ${{ github.actor }}
3434
password: ${{ secrets.GITHUB_TOKEN }}
3535

3636
- name: Setup Image Metadata
3737
id: base-meta
38-
uses: docker/metadata-action@v3
38+
uses: docker/metadata-action@v5
3939
with:
4040
images: |
4141
ghcr.io/${{ steps.info.outputs.repo-owner }}/acapy-plugin-pickup
@@ -44,7 +44,7 @@ jobs:
4444
type=sha
4545
4646
- name: Build and Push Image to ghcr.io
47-
uses: docker/build-push-action@v3
47+
uses: docker/build-push-action@v5
4848
with:
4949
push: true
5050
context: .

.github/workflows/publish-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Install poetry
1616
run: pipx install poetry
1717
- name: Setup Python
1818
id: setup
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ env.PYTHON_VERSION }}
2222
cache: 'poetry'

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
python-version: ['3.9', '3.10']
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Install poetry
1818
run: pipx install poetry
1919
- name: Setup Python
2020
id: setup
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
cache: 'poetry'
@@ -33,7 +33,7 @@ jobs:
3333
name: Integration Tests
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Run integration tests
3838
run: |
3939
docker-compose -f ./int/docker-compose.yml run tests

0 commit comments

Comments
 (0)