Skip to content

Commit

Permalink
bump core github actions to latest release
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Auerbeck <[email protected]>
  • Loading branch information
tylerauerbeck authored and fedepaol committed Oct 7, 2024
1 parent 003d42d commit 7cc4775
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bump_metallb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Latest Metal LB Operator
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: metallboperator
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: metallb/metallb
path: metallb
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
else
echo "has_changes=true" >> $GITHUB_OUTPUT
fi
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Bump metallb
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
ref: v0.13 # previous release version
fetch-depth: 0 # Fetch all history for all tags and branches

- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
Expand Down Expand Up @@ -325,14 +325,14 @@ jobs:
rm -f Chart.yaml
- name: Checkout MetalLB
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: metallb/metallb
path: metallb
ref: "${{ steps.metallb_ref.outputs.content }}"

- name: Checkout frr-k8s
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: metallb/frr-k8s
path: frr-k8s
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/composite/collectlogs/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
using: "composite"
steps:
- name: Archive E2E Tests logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifact-name }}-logs
path: /tmp/kind_logs
Expand All @@ -26,7 +26,7 @@ runs:
sudo chmod -R o+r /tmp/kind_logs
- name: Archive kind logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.artifact-name }}-kind-logs
path: /tmp/kind_logs
2 changes: 1 addition & 1 deletion .github/workflows/composite/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
path: metallboperator
fetch-depth: 0 # Fetch all history for all tags and branches

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
name: Go ${{ matrix.go }}
steps:
- name: Checkout Metal LB Operator
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all tags and branches

- uses: actions/setup-go@v2
- uses: actions/setup-go@v5
id: go
with:
go-version: ${{ matrix.go }}
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Archive E2E Tests logs
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test_e2e_logs
path: /tmp/test_e2e_logs/
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Archive kind logs
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: kind_logs
path: /tmp/kind_logs
Expand All @@ -85,7 +85,7 @@ jobs:
cosign-release: "v2.2.4"

- name: Code checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup docker buildx
uses: docker/setup-buildx-action@v2
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v') # we craft releases only for tags
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build changelog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Verify Version Bump
Expand Down

0 comments on commit 7cc4775

Please sign in to comment.