Skip to content
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
2 changes: 1 addition & 1 deletion .github/actions/workflow-restarter-proxy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ runs:

# checkout the repository because I want bundler to have access to my Gemfile
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# setup ruby including a bundle install of my Gemfile
- name: Set up Ruby and install Octokit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem_acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:

- name: "checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"

- name: "export environment"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

steps:
- name: "checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
fetch-depth: 1
- name: "shellcheck"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: ${{ github.event.inputs.target }}
clean: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gem_release_prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: ${{ github.event.inputs.target }}
clean: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"

- name: "Run yaml-lint"
uses: "ibiqlik/action-yamllint@v3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mend_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: "checkout"
if: success()
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/module_acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"

- name: "Configure forge authentication"
env:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
nslookup artifactory.delivery.puppetlabs.net

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"

- name: "Disable Apparmor"
if: ${{ inputs.disable_apparmor }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/module_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

steps:
- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/module_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
ruby-version: "3.1"

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
ref: "${{ github.ref }}"
clean: true
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/module_release_prep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
required: true
type: "string"


jobs:
release_prep:
name: "Release prep"
Expand All @@ -24,7 +23,7 @@ jobs:
steps:

- name: "Checkout"
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
fetch-depth: 0

Expand All @@ -45,9 +44,8 @@ jobs:
- name: "setup ruby"
uses: "ruby/setup-ruby@v1"
with:
ruby-version: "3.1"
ruby-version: "3.3"
bundler-cache: "true"
bundler: 2.4.22

- name: "bundle environment"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tooling_mend_ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

- name: "checkout"
if: success()
uses: "actions/checkout@v4"
uses: "actions/checkout@v6"
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-restarter-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
steps:
# (3) checkout this repository in order to "see" the following custom action
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Trigger reusable workflow
uses: "puppetlabs/cat-github-actions/.github/actions/workflow-restarter-proxy@main"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-restarter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check retry count
id: check-retry
Expand Down