Skip to content

Commit

Permalink
Merge pull request #163 from mallardduck/fix-gha
Browse files Browse the repository at this point in the history
fix actions with old versions
  • Loading branch information
mallardduck authored Jan 30, 2025
2 parents 9fd7c6d + 8621982 commit 57444ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-debug-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
# Checkout the code at the head of the specified PR
- name: Checkout the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get Pull Request Head SHA
id: get_head_sha
run: |
Expand All @@ -56,7 +56,7 @@ jobs:
steps:
# Checkout the code at the head of the specified PR
- name: Checkout PR Head
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare_pr_info.outputs.head_sha }}
# Proceed to build images
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
steps:
# Checkout the code at the head of the specified PR
- name: Checkout PR Head
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare_pr_info.outputs.head_sha }}
# Proceed to build images
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
steps:
# Checkout the code at the head of the specified PR
- name: Checkout PR Head
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare_pr_info.outputs.head_sha }}
# Proceed to build images
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/prom-fed-e2e-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ jobs:
TAG: ${{ needs.prebuild-env.outputs.branch_static_tag }}
steps:
-
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: '>=1.20.0'
- uses: azure/setup-kubectl@v3
- uses: azure/setup-helm@v3
- uses: azure/setup-kubectl@v4
- uses: azure/setup-helm@v4
with:
version: v3.11.1
-
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
run: ./.github/workflows/e2e/scripts/generate-artifacts.sh;
- name: Upload logs and manifests on failure
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-${{ matrix.arch }}-${{ matrix.k3s_version }}
path: artifacts/
Expand Down

0 comments on commit 57444ba

Please sign in to comment.