diff --git a/.github/workflows/verify-docker.yml b/.github/workflows/verify-docker.yml index c9daacf..846ee9a 100644 --- a/.github/workflows/verify-docker.yml +++ b/.github/workflows/verify-docker.yml @@ -25,13 +25,13 @@ jobs: fail-fast: false steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: "2.7" - name: Setup caching - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} @@ -60,6 +60,6 @@ jobs: with: command_string: "validate:threshold -i spec/results/${{ matrix.suite }}-test-result.json -F ${{ matrix.suite }}.threshold.yml" - name: Save Test Result JSON - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: path: spec/results diff --git a/.github/workflows/verify-ec2.yml b/.github/workflows/verify-ec2.yml index 900a3c2..87c626d 100644 --- a/.github/workflows/verify-ec2.yml +++ b/.github/workflows/verify-ec2.yml @@ -32,15 +32,15 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: us-east-1 - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Clone full repository so we can push run: git fetch --prune --unshallow - name: Setup Ruby - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: "2.7" # - name: Setup caching - # uses: actions/cache@v2 + # uses: actions/cache@v4 # with: # path: vendor/bundle # key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} @@ -76,6 +76,6 @@ jobs: with: command_string: "validate:threshold -i spec/results/${{ matrix.suite }}-test-result.json -F ${{ matrix.suite }}.threshold.yml" - name: Save Test Result JSON - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: path: spec/results