Skip to content

Bump nock from 13.4.0 to 13.5.0 #60

Bump nock from 13.4.0 to 13.5.0

Bump nock from 13.4.0 to 13.5.0 #60

Workflow file for this run

name: Example Runs Testing
on:
push:
workflow_dispatch:
jobs:
example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: fetch-latest-github-release
uses: ./
- name: print out latest release tag
run: echo "The latest release tag is $TAG"
env:
TAG: ${{ steps.fetch-latest-github-release.outputs.tag_name }}
customRepoExample:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- id: fetch-latest-github-release
uses: ./
with:
github_token: ${{ github.token }}
repo_path: actions/runner
- name: print out latest release tag
run: echo "The latest release tag is $TAG"
env:
TAG: ${{ steps.fetch-latest-github-release.outputs.tag_name }}