Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Improve ci#40

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
methane merged 7 commits intopython:3.10fromrffontenelle:improve-CI
Dec 30, 2022
Merged
Changes from1 commit
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
PrevPrevious commit
NextNext commit
Update actions versions
One of the reason is that some of them use node.js 12, which isnow deprecated. Actions is displaying warnings about it.v4 of setup-python is particular useful because it introducespackage caching, which reduces the time of workflow run.
  • Loading branch information
@rffontenelle
rffontenelle committedOct 24, 2022
commitd3230e5e923232f7b55f8341ebbc0ba89f3d65d2
18 changes: 13 additions & 5 deletions.github/workflows/update.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,18 +23,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check out CPython
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: python/cpython
persist-credentials: false
ref: ${{ env.CPYTHON_BRANCH }}
path: cpython
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Install Transifex CLI
run: |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
Expand DownExpand Up@@ -83,14 +85,20 @@ jobs:
run:
echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
- name: Check out source branch (${{ env.CURRENT_BRANCH }})
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
path: ${{ env.CURRENT_BRANCH }}
- name: Check out target branch (${{ matrix.branch }})
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ matrix.branch }}
path: ${{ matrix.branch }}
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
- name: Install dependencies
run: |
sudo apt update -y && sudo apt install gettext -y
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp