Skip to content
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

gha: bump the all-github-actions group with 4 updates #208

Merged
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
name: Build translated docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 5

Expand All @@ -52,7 +52,7 @@ jobs:
run: git pull --rebase

- name: Add problem matcher
uses: sphinx-doc/github-problem-matcher@v1.0
uses: sphinx-doc/github-problem-matcher@v1.1

- name: Build docs
continue-on-error: true
Expand All @@ -62,14 +62,14 @@ jobs:

- name: Upload artifact - docs
if: steps.build.outcome == 'success'
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: docs
path: cpython/Doc/build/html

- name: Upload artifact - log files
if: always()
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: build-logs
path: logs/*
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
name: Lint translations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 5

Expand All @@ -122,7 +122,7 @@ jobs:
make lint

- name: Upload artifact - log files
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: lint-logs
path: logs/*
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
name: Spell check translations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.2
- uses: actions/checkout@v4.1.6
with:
fetch-depth: 5

Expand All @@ -174,7 +174,7 @@ jobs:
run: make spell

- name: Upload artifact - log files
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: pospell-logs
path: logs/*
Expand All @@ -186,7 +186,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6
with:
fetch-depth: 5

Expand All @@ -211,7 +211,7 @@ jobs:
powrap compendium.po

- name: Upload artifact
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: compendium
path: compendium.po
Expand All @@ -221,7 +221,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6

- name: Set up Python 3
uses: actions/setup-python@v5.1.0
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6

- name: Get branch name on push or schedule
if: |
Expand All @@ -52,7 +52,7 @@ jobs:
run: echo "BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV

- name: Check out CPython
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6
with:
repository: python/cpython
ref: ${{ env.BRANCH }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
TX_TOKEN: ${{ secrets.TX_TOKEN }}

- name: Upload artifact - po files
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: translations
path: |
Expand All @@ -90,7 +90,7 @@ jobs:

- name: Upload artifact - log files
if: always()
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: pull-logs
path: |
Expand All @@ -107,10 +107,10 @@ jobs:
contents: write
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6

- name: Download PO files
uses: actions/download-artifact@v4.1.4
uses: actions/download-artifact@v4.1.7
with:
name: translations

Expand Down Expand Up @@ -166,13 +166,13 @@ jobs:
run: echo "CURRENT_BRANCH=${{ github.event.inputs.BRANCH }}" >> $GITHUB_ENV

- name: Check out source branch (${{ env.CURRENT_BRANCH }})
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6
with:
path: ${{ env.CURRENT_BRANCH }}
persist-credentials: false

- name: Check out target branch (${{ matrix.branch }})
uses: actions/checkout@v4.1.2
uses: actions/checkout@v4.1.6
with:
ref: ${{ matrix.branch }}
path: ${{ matrix.branch }}
Expand Down
Loading