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

Update suzuki-shunsuke/github-action-renovate-config-validator action to v1 #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/check-renovatebot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ on:
jobs:
validate:
name: Validate renovatebot config
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.3
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
with:
config_file_path: renovatebot/jore4-default-preset.json5
4 changes: 2 additions & 2 deletions .github/workflows/doctoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
verify-doctoc:
name: Verifies whether table of contents has been updated
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run doctoc on README
run: npx doctoc README.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-extract-metadata-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
test-extract-metadata:
name: Retrieves metadata
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Check that environment is empty
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-healthcheck-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
test-healthcheck-success:
name: Verifies whether healthcheck action succeeds when it should
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Startup sample HTTP server
run: docker run -d -p 8080:80 nginxdemos/hello
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-setup-e2e-environment-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
test-e2e-setup-action:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Retrieve branch name
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand Down
2 changes: 1 addition & 1 deletion github-actions/run-cypress-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:
- name: Upload test reports as an artifact
# should be run even if the tests fail
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cypress-docker-reports
path: |
Expand Down
Loading