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/workflows/e2e-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ inputs.repository || github.repository }}
ref: ${{ inputs.branch || github.ref }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- uses: azure/login@v2
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: ${{ inputs.repository || github.repository }}
ref: ${{ inputs.branch || github.ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/patch-vendored-samba.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
changed: ${{ steps.compute-diff.outputs.changed }}
samba-ref: ${{ steps.compute-diff.outputs.samba-ref }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Checkout Samba files
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: samba-team/samba
sparse-checkout: ${{ env.checkout_files }}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
needs: check-for-changes
if: ${{ needs.check-for-changes.outputs.changed == 'true' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Replace with updated Samba source
uses: actions/download-artifact@v6
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/policy-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build admxgen static binary
runs-on: ${{ vars.RUNNER }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
- generate-ad
- generate-doc
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Download adm template files for "all"
uses: actions/download-artifact@v6
with:
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
needs: integrate
if: ${{ failure() }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Create issue if build failed
uses: JasonEtco/create-an-issue@v2
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y ${{ env.apt_dependencies }}
- name: work around permission issue with git vulnerability (we are local here). TO REMOVE
run: git config --global --add safe.directory /__w/adsys/adsys
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Go code sanity check
uses: canonical/desktop-engineering/gh-actions/go/code-sanity@v2
with:
Expand All @@ -53,7 +53,7 @@ jobs:
name: Tests
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
env:
packages: ./internal/loghooks ./internal/watchdservice ./internal/watchdtui ./internal/watcher ./internal/config/watchd ./cmd/adwatchd ./cmd/adwatchd/integration_tests
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tics-report-daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: TIOBE TiCS Framework
runs-on: ${{ vars.RUNNER }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
Expand Down
Loading