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/generatemo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Perl environment
# You may pin to the exact commit or the version.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:

steps:
- name: Checkout GLPI core (shallow)
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: glpi-project/glpi
ref: 11.0/bugfixes
path: glpi

- name: Checkout plugin
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: glpi/plugins/accounts

Expand Down Expand Up @@ -88,14 +88,14 @@ jobs:

steps:
- name: Checkout GLPI core
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: glpi-project/glpi
ref: 11.0/bugfixes
path: glpi

- name: Checkout plugin
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: glpi/plugins/accounts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Build project # This would actually build your project, using zip for an example artifact
id: build_
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/updatepot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: install xgettext

Expand Down
Loading