Skip to content

Commit 0028900

Browse files
chore(deps): bump the actions-deps group across 1 directory with 4 updates (#360)
Bumps the actions-deps group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [aws-actions/configure-aws-credentials](https://github.com/aws-actions/configure-aws-credentials) and [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-python` from 4 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v6) Updates `aws-actions/configure-aws-credentials` from 4 to 6 - [Release notes](https://github.com/aws-actions/configure-aws-credentials/releases) - [Commits](aws-actions/configure-aws-credentials@v4...v6) Updates `slackapi/slack-github-action` from 3.0.1 to 3.0.2 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Changelog](https://github.com/slackapi/slack-github-action/blob/main/CHANGELOG.md) - [Commits](slackapi/slack-github-action@af78098...03ea543) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 61c403a commit 0028900

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/deploy-examples.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
examples: ${{ steps.get-examples.outputs.examples }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626

2727
- name: Get examples from catalog
2828
id: get-examples
@@ -40,16 +40,16 @@ jobs:
4040
fail-fast: false
4141

4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v6
4444

4545
- name: Setup Python
46-
uses: actions/setup-python@v4
46+
uses: actions/setup-python@v6
4747
with:
4848
python-version: '3.13'
4949

5050
- name: Configure AWS credentials
5151
if: github.event_name != 'workflow_dispatch' || github.actor != 'nektos/act'
52-
uses: aws-actions/configure-aws-credentials@v4
52+
uses: aws-actions/configure-aws-credentials@v6
5353
with:
5454
role-to-assume: "${{ secrets.ACTIONS_INTEGRATION_ROLE_NAME }}"
5555
role-session-name: pythonTestingLibraryGitHubIntegrationTest

.github/workflows/notify_slack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Send issue notification to Slack
1616
if: github.event_name == 'issues'
17-
uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 # v3.0.1
17+
uses: slackapi/slack-github-action@03ea5433c137af7c0495bc0cad1af10403fc800c # v3.0.2
1818
with:
1919
webhook: ${{ secrets.SLACK_WEBHOOK_URL_ISSUE }}
2020
webhook-type: incoming-webhook
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Send pull request notification to Slack
2929
if: github.event_name == 'pull_request_target'
30-
uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 # v3.0.1
30+
uses: slackapi/slack-github-action@03ea5433c137af7c0495bc0cad1af10403fc800c # v3.0.2
3131
with:
3232
webhook: ${{ secrets.SLACK_WEBHOOK_URL_PR }}
3333
webhook-type: incoming-webhook

.github/workflows/update-sam-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
update-template:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
with:
2121
token: ${{ secrets.GITHUB_TOKEN }}
2222
ref: ${{ github.head_ref }}
2323

2424
- name: Set up Python 3.13
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: "3.13"
2828

0 commit comments

Comments
 (0)