Skip to content

Commit 17b108d

Browse files
Bump the github-action-dependencies group across 1 directory with 7 updates
Bumps the github-action-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `5` | | [actions/setup-java](https://github.com/actions/setup-java) | `3` | `5` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `2` | | [s4u/maven-settings-action](https://github.com/s4u/maven-settings-action) | `2.8.0` | `4.0.0` | | [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) | `4` | `5` | | [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) | `5` | `6` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `actions/setup-java` from 3 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v3...v5) Updates `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1...v2) Updates `s4u/maven-settings-action` from 2.8.0 to 4.0.0 - [Release notes](https://github.com/s4u/maven-settings-action/releases) - [Commits](s4u/maven-settings-action@v2.8.0...v4.0.0) Updates `crazy-max/ghaction-github-labeler` from 4 to 5 - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Commits](crazy-max/ghaction-github-labeler@v4...v5) Updates `release-drafter/release-drafter` from 5 to 6 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@v5...v6) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@v1.12.4...v1.13.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: s4u/maven-settings-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: crazy-max/ghaction-github-labeler dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: release-drafter/release-drafter dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cc812ac commit 17b108d

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/build-java.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
packages: write
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v5
2727

2828
- name: Set up JDK 21
29-
uses: actions/setup-java@v3
29+
uses: actions/setup-java@v5
3030
with:
3131
java-version: 21
3232
distribution: zulu

.github/workflows/generate-java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ jobs:
2525
steps:
2626
- name: Generate token
2727
id: generate_token
28-
uses: actions/create-github-app-token@v1
28+
uses: actions/create-github-app-token@v2
2929
with:
3030
app-id: ${{ secrets.DAPLA_BOT_APP_ID }}
3131
private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }}
3232

3333
# Checkout using the token. This will persist the token for use in later steps.
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
token: ${{ steps.generate_token.outputs.token }}
@@ -43,7 +43,7 @@ jobs:
4343
git config user.email "143391972+dapla-bot[bot]@users.noreply.github.com"
4444
4545
- name: Setup Maven authentication to GitHub packages
46-
uses: s4u/maven-settings-action@v2.8.0
46+
uses: s4u/maven-settings-action@v4.0.0
4747
id: maven_settings
4848
with:
4949
servers: '[{"id": "github","configuration": {"httpHeaders": {"property": {"name": "Authorization","value": "Bearer ${{ secrets.GITHUB_TOKEN }}"}}}}]'

.github/workflows/generate-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ jobs:
1919
steps:
2020
- name: Generate token
2121
id: generate_token
22-
uses: actions/create-github-app-token@v1
22+
uses: actions/create-github-app-token@v2
2323
with:
2424
app-id: ${{ secrets.DAPLA_BOT_APP_ID }}
2525
private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }}
2626

2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 0
3131
token: ${{ steps.generate_token.outputs.token }}

.github/workflows/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out the repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v5
1414

1515
# Reads labels from .github/labels.yml
1616
- name: Run Labeler
17-
uses: crazy-max/ghaction-github-labeler@v4
17+
uses: crazy-max/ghaction-github-labeler@v5
1818
with:
1919
skip-delete: true

.github/workflows/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
pull-requests: write
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: release-drafter/release-drafter@v5
27+
- uses: release-drafter/release-drafter@v6
2828
name: Generate Python Release Notes
2929
with:
3030
config-name: release-drafter-python.yml
3131
env:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33-
- uses: release-drafter/release-drafter@v5
33+
- uses: release-drafter/release-drafter@v6
3434
name: Generate Java Release Notes
3535
with:
3636
config-name: release-drafter-java.yml

.github/workflows/release-java.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ jobs:
1414
packages: write
1515

1616
steps:
17-
- uses: actions/create-github-app-token@v1
17+
- uses: actions/create-github-app-token@v2
1818
id: app-token
1919
with:
2020
app-id: ${{ secrets.DAPLA_BOT_APP_ID }}
2121
private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }}
2222

23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v5
2424
with:
2525
token: ${{ steps.app-token.outputs.token }}
2626
ref: refs/heads/main
2727

2828
- name: Set up JDK 21
29-
uses: actions/setup-java@v3
29+
uses: actions/setup-java@v5
3030
with:
3131
java-version: 21
3232
distribution: zulu
@@ -44,7 +44,7 @@ jobs:
4444
git config user.email "143391972+dapla-bot[bot]@users.noreply.github.com"
4545
4646
- name: Setup Maven authentication to GitHub packages
47-
uses: s4u/maven-settings-action@v2.8.0
47+
uses: s4u/maven-settings-action@v4.0.0
4848
id: maven_settings
4949
with:
5050
servers: '[{"id": "github","configuration": {"httpHeaders": {"property": {"name": "Authorization","value": "Bearer ${{ secrets.GITHUB_TOKEN }}"}}}}]'
@@ -65,7 +65,7 @@ jobs:
6565
echo "tag=${TAG}" >> $GITHUB_OUTPUT
6666
6767
- name: Create GitHub release draft
68-
uses: release-drafter/release-drafter@v5
68+
uses: release-drafter/release-drafter@v6
6969
id: create_github_release
7070
env:
7171
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

.github/workflows/release-python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
steps:
2727
- name: Generate token
2828
id: generate_token
29-
uses: actions/create-github-app-token@v1
29+
uses: actions/create-github-app-token@v2
3030
with:
3131
app-id: ${{ secrets.DAPLA_BOT_APP_ID }}
3232
private-key: ${{ secrets.DAPLA_BOT_PRIVATE_KEY }}
3333

3434
- name: Check out the repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 2
3838

@@ -65,20 +65,20 @@ jobs:
6565
6666
- name: Publish package on PyPI
6767
if: (steps.check-version.outputs.tag) || (github.event_name == 'workflow_dispatch')
68-
uses: pypa/gh-action-pypi-publish@v1.12.4
68+
uses: pypa/gh-action-pypi-publish@v1.13.0
6969
with:
7070
packages-dir: generated/python/datadoc_model/dist
7171

7272
# This package isn't currently published on TestPyPI
7373
# - name: Publish package on TestPyPI
7474
# if: (!steps.check-version.outputs.tag)
75-
# uses: pypa/gh-action-pypi-publish@v1.12.4
75+
# uses: pypa/gh-action-pypi-publish@v1.13.0
7676
# with:
7777
# packages-dir: generated/python/datadoc_model/dist
7878
# repository-url: https://test.pypi.org/legacy/
7979

8080
- name: Publish the release notes
81-
uses: release-drafter/release-drafter@v6.1.0
81+
uses: release-drafter/release-drafter@v6
8282
with:
8383
publish: ${{ steps.check-version.outputs.tag != '' }}
8484
tag: ${{ steps.check-version.outputs.tag }}

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run:
2222
working-directory: ./generated/python/datadoc_model
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Install uv
2626
uses: astral-sh/setup-uv@v6
2727
with:

0 commit comments

Comments
 (0)