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

MAINT: Update GHA to current versions #158

Merged
merged 1 commit into from
Jan 30, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/docs-trigger-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Trigger Repository Dispatch in docs
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3.0.0
with:
token: ${{ secrets.PRIVATE_REPO_ACCESS_PAT }}
repository: ZeitOnline/docs
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-api-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ jobs:
RELEASE_TAG: api-docs-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.2.2

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4.2.0
with:
node-version: '14'

- name: Cache dependencies
id: cache
uses: actions/cache@v2
uses: actions/cache@v4.2.0
with:
path: ./docs/api/node_modules
key: modules-${{ hashFiles('docs/api/package-lock.json') }}
Expand All @@ -49,7 +49,7 @@ jobs:
git push origin ${{ env.RELEASE_TAG }}

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2.2.1
with:
tag_name: ${{ env.RELEASE_TAG }}
files: swagger-api-docs.tar.gz
Expand All @@ -63,7 +63,7 @@ jobs:

steps:
- name: Trigger Repository Dispatch in docs
uses: peter-evans/repository-dispatch@v2
uses: peter-evans/repository-dispatch@v3.0.0
with:
token: ${{ secrets.PRIVATE_REPO_ACCESS_PAT }}
repository: ZeitOnline/docs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testrunner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
contents: "read"

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.2.2

- uses: actions/setup-python@v5.0.0
- uses: actions/setup-python@v5.4.0
with:
python-version: "3.12"
cache: "pipenv"
- run: pip install pipenv

- uses: actions/setup-node@v4.0.0
- uses: actions/setup-node@v4.2.0
with:
node-version: "20"
cache: "npm"
Expand Down