Skip to content

Commit

Permalink
Upgrade GitHub Actions versions to avoid deprecation warnings (#1080)
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed May 5, 2024
1 parent 40b194f commit c382433
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1
env:
RUFF_OUTPUT_FORMAT: github
test:
Expand All @@ -40,7 +40,7 @@ jobs:
BABEL_CLDR_QUIET: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: cldr
key: cldr-${{ hashFiles('scripts/*cldr*') }}
Expand All @@ -60,7 +60,7 @@ jobs:
env:
COVERAGE_XML_PATH: ${{ runner.temp }}
BABEL_TOX_EXTRA_DEPS: pytest-github-actions-annotate-failures
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
directory: ${{ runner.temp }}
build:
Expand All @@ -76,7 +76,7 @@ jobs:
- run: pip install build -e .
- run: make import-cldr
- run: python -m build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -91,7 +91,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down

0 comments on commit c382433

Please sign in to comment.