Skip to content

ci: bump the github-actions group across 1 directory with 4 updates #1314

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
if: ${{ github.event_name != 'pull_request' || !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 100

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 100 # Must at least retrieve a set of commits to compare changes
# primarily because of any 'Rebase and Merge' PR action in GitHub
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
# possible that the branch was updated while the workflow was running. This
# prevents accidentally releasing un-evaluated changes.
- name: Setup | Checkout Repository on Release Branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.ref_name }}
fetch-depth: 0
Expand All @@ -122,7 +122,7 @@ jobs:
git reset --hard ${{ github.sha }}

- name: Setup | Download Build Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
id: artifact-download
with:
name: ${{ needs.validate.outputs.distribution-artifacts }}
Expand All @@ -145,14 +145,14 @@ jobs:

- name: Release | Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@2896129e02bb7809d2cf0c1b8e9e795ee27acbcf # v10.2.0
uses: python-semantic-release/python-semantic-release@5b9d941d5b29da138b933660ce1a9df75b54ce25 # v10.3.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
verbosity: 1
build: false

- name: Release | Add distribution artifacts to GitHub Release Assets
uses: python-semantic-release/publish-action@b717f67f7e7e9f709357bce5a542846503ce46ec # v10.2.0
uses: python-semantic-release/publish-action@f8a3b2efc2282bc5219b83ba78ac64b69d6e05b9 # v10.3.1
if: steps.release.outputs.released == 'true'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:

steps:
- name: Setup | Download Build Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
id: artifact-download
with:
name: ${{ needs.validate.outputs.distribution-artifacts }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:

steps:
- name: Setup | Checkout Repository at workflow sha
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 0
Expand All @@ -112,7 +112,7 @@ jobs:

- name: Build | Build next version artifacts
id: version
uses: python-semantic-release/python-semantic-release@2896129e02bb7809d2cf0c1b8e9e795ee27acbcf # v10.2.0
uses: python-semantic-release/python-semantic-release@5b9d941d5b29da138b933660ce1a9df75b54ce25 # v10.3.1
with:
github_token: ""
verbosity: 1
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

steps:
- name: Setup | Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 1
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:

steps:
- name: Setup | Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 1
Expand All @@ -229,7 +229,7 @@ jobs:
cache: 'pip'

- name: Setup | Download Distribution Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build.outputs.distribution-artifacts }}
path: ./dist
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:

steps:
- name: Setup | Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 1
Expand All @@ -318,7 +318,7 @@ jobs:
cache: 'pip'

- name: Setup | Download Distribution Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build.outputs.distribution-artifacts }}
path: dist
Expand Down Expand Up @@ -405,13 +405,13 @@ jobs:

steps:
- name: Setup | Checkout Repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 1
ref: ${{ github.sha }}

- name: Setup | Download Distribution Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: ${{ needs.build.outputs.distribution-artifacts }}
path: ${{ env.ACTION_SRC_DIR }}
Expand Down Expand Up @@ -447,7 +447,7 @@ jobs:

steps:
- name: Setup | Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
fetch-depth: 1
Expand Down
Loading