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
4 changes: 2 additions & 2 deletions .github/workflows/action-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ jobs:
image: ["${{ fromJson(inputs.imagesToBuild) }}"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
fetch-depth: 1

- name: Checkout private repo
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
repository: elfhosted/containers-private
path: containers-private
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/image-rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
addedOrModifiedImages: ${{ steps.collect-changes.outputs.addedOrModifiedImages }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Collect changes
id: collect-changes
Expand All @@ -39,7 +39,7 @@ jobs:
sudo apt-get -y install moreutils jo

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
outputs:
matrix: ${{ steps.fetch.outputs.changes }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v7
with:
token: ${{ env.TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate-schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Override default config from dispatch variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-ghcr-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix: ${{ steps.collect.outputs.matrix }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v7
with:
token: ${{ env.TOKEN }}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v7
- name: Install Task
run: curl -sL https://taskfile.dev/install.sh | sh
- name: Run CI Task
Expand Down