Skip to content

Commit

Permalink
670 actions deprecation (#671)
Browse files Browse the repository at this point in the history
Bump version of github actions used in Actions pipelines. Both
actions/checkout@v3 and actions/[email protected] need to be
updated to latest point release in v4. Testing on forked repo it appears this is safe for us to
perform.

---------

Signed-off-by: Mike Fuller <[email protected]>
  • Loading branch information
mike-finopsorg authored Dec 30, 2024
1 parent 381b8e1 commit 6ded047
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/candidate_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
image: pandoc/extra:latest-ubuntu
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4.2.2
- name: Install prequirements
shell: bash
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
make STYLE=candidate_release
- name: Upload Spec
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.5.0
with:
name: FOCUS_specification
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
image: pandoc/extra:latest-ubuntu
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4.2.2
- name: Install prequirements
shell: bash
run: |
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
make STYLE=main
- name: Upload Spec
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.5.0
with:
name: FOCUS_specification
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/working_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image: pandoc/extra:latest-ubuntu
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4.2.2
- name: Install prequirements
shell: bash
run: |
Expand All @@ -29,7 +29,7 @@ jobs:
run: |
make STYLE=working_draft
- name: Upload Spec
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.5.0
with:
name: FOCUS_specification
path: |
Expand Down

0 comments on commit 6ded047

Please sign in to comment.