Skip to content

Commit

Permalink
MAINT: Update GHA to current versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wosc committed Jan 30, 2025
1 parent 23f6c52 commit 22c4cb7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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

0 comments on commit 22c4cb7

Please sign in to comment.