Skip to content

Commit

Permalink
Upgraded checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-walther committed Nov 16, 2022
1 parent 0b7b705 commit 9568c0b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/nightly_build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
# creates the matrix strategy from nightly_build_release_matrix.json
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: set-matrix
uses: JoshuaTheMiller/conditional-build-matrix@main
with:
Expand All @@ -21,7 +21,7 @@ jobs:
output1: ${{ steps.step2.outputs.lastest_release }}
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set environment variable to latest release branch
id: step2
Expand All @@ -38,13 +38,10 @@ jobs:
if: matrix.os == 'ubuntu-latest'

- name: Check out latest release branch
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: ${{ needs.get_release.outputs.output1 }}

- name: Print output content
run: echo ${{ needs.get_release.outputs.output1 }}

- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -180,7 +177,7 @@ jobs:
- name: Collect jobs status
uses: technote-space/workflow-conclusion-action@v2
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Keybase - Node Install
if: env.WORKFLOW_CONCLUSION == 'failure'
run: npm install
Expand Down

0 comments on commit 9568c0b

Please sign in to comment.