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
4 changes: 2 additions & 2 deletions .github/workflows/auto_tagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix: ${{ steps.get-matrix.outputs.matrix }}
matrix_empty: ${{ steps.get-matrix.outputs.matrix_empty }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0
- id: get-matrix
Expand All @@ -35,7 +35,7 @@ jobs:
directory: ${{ fromJson(needs.find_changes.outputs.matrix).directory }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compare-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: [ubuntu-24.04]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Run tests
shell: sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/find-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: [ubuntu-24.04]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Find changes
id: changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_calculate_incremental_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: calculate-incremental-tag
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- id: create_tag
uses: ./calculate-incremental-tag
- run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_setup_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
version: [ '3.1', '3.2', '3.3' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
path: _actions
- run: |
Expand All @@ -38,7 +38,7 @@ jobs:
# version: [ '2.7', '3.0', '3.1', '3.2' ]
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v6
# with:
# path: _actions
# - run: |
Expand Down
4 changes: 2 additions & 2 deletions find-changes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ runs:
steps:
- if: github.event_name == 'pull_request' || github.event_name == 'merge_group'
name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 2

- if: github.event_name == 'push'
name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Find changes
id: changes
Expand Down
6 changes: 3 additions & 3 deletions publish-confluence/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish@v1
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish@v1
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish@v1
Expand Down
2 changes: 1 addition & 1 deletion release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Create GitHub release
id: release
uses: smartlyio/github-actions@release-v1
Expand Down