diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index 12e4d68..963c910 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -33,7 +33,7 @@ jobs: steps: # Runs a single command using the runners shell - name: Checkout repo - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: setup python uses: actions/setup-python@v6.0.0 @@ -41,6 +41,6 @@ jobs: python-version: 3.12.5 - name: test uuid generator - uses: bossOfCode/generate-uuid@v1.2 + uses: bossOfCode/generate-uuid@v1.3 with: version: ${{ inputs.version }} diff --git a/.github/workflows/manual2.yml b/.github/workflows/manual2.yml index 8761018..2a51f93 100644 --- a/.github/workflows/manual2.yml +++ b/.github/workflows/manual2.yml @@ -33,7 +33,7 @@ jobs: steps: # Runs a single command using the runners shell - name: Checkout repo - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: setup python uses: actions/setup-python@v6.0.0 @@ -42,7 +42,7 @@ jobs: - name: test uuid generator id: uuid - uses: bossOfCode/generate-uuid@v1.2 + uses: bossOfCode/generate-uuid@v1.3 with: version: ${{ inputs.version }} diff --git a/.github/workflows/manual3.yaml b/.github/workflows/manual3.yaml index 7e14829..8196c7b 100644 --- a/.github/workflows/manual3.yaml +++ b/.github/workflows/manual3.yaml @@ -35,7 +35,7 @@ jobs: steps: # Runs a single command using the runners shell - name: Checkout repo - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 - name: setup python uses: actions/setup-python@v6.0.0 diff --git a/README.md b/README.md index 28d3f05..f00f157 100644 --- a/README.md +++ b/README.md @@ -23,11 +23,11 @@ Generates a random UUID using the `uuid` module in python. ## Usage ```yaml -- uses: actions/checkout@v4.1.7 -- uses: actions/setup-python@v5.1.1 +- uses: actions/checkout@v6.0.0 +- uses: actions/setup-python@v6.0.0 with: - python-version: 3.13 #any version above 3.9 will do -- uses: bossOfCode/generate-uuid@v1 #Use current version + python-version: 3.16 #any version above 3.9 will do +- uses: bossOfCode/generate-uuid@v1.3.1 #Use current version with: - version: 5 #v1, 3, 4, 5, and 7 are avaliable ``` diff --git a/action.yml b/action.yml index 50b9e56..2f21cc7 100644 --- a/action.yml +++ b/action.yml @@ -32,7 +32,7 @@ runs: shell: bash - name: checkout this repo - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 with: repository: bossOfCode/generate-uuid