Skip to content
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/actions_template_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh_pages_mk_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: 3.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: markdownlint
run: make markdownlint
- name: prune
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id: release
with:
release-type: simple
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: tag major and minor versions
if: ${{ steps.release.outputs.release_created }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_test_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- andyaugustin/actions-template-sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
lfs: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run shellcheck in container
run: make shellcheck
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test action step
id: test
uses: ./ # Uses an action in the root directory
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test action step
id: test
uses: ./ # Uses an action in the root directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_github_app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- name: Checkout
# https://github.com/actions/checkout#usage
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ steps.source-app-token.outputs.token }}
persist-credentials: false # Don't set this to true as otherwise the token will be stored in the local git config and the run will fail
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_hooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test action step
uses: ./ # Uses an action in the root directory
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ssh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test action step ssh
if: github.repository_owner == 'AndreasAugustin'
uses: ./ # Uses an action in the root directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_ssh_gitlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Test action step ssh
if: github.repository_owner == 'AndreasAugustin'
uses: ./ # Uses an action in the root directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Test action step first steps
uses: ./ # Uses an action in the root directory
Expand Down