Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GITHUB_ACTIONS (0.55 sec)

  1. docs/releasing.md

        ```
    
    5. Wait for [GitHub Actions][github_actions] to start the publish job.
    
    6. Prepare for ongoing development and push to GitHub.
    
        ```
        sed -i "" \
          "s/version = \".*\"/version = \"$NEXT_VERSION\"/g" \
          build.gradle.kts
        git commit -am "Prepare next development version."
        git push
        ```
    
    7. Confirm the [GitHub Actions][github_actions] publish job succeeded.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Dec 26 22:07:16 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. .github/dependabot.yml

        target-branch: "maven-4.0.x"
        labels:
          - "mvn40"
          - "dependencies"
          - "github_actions"
    
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        target-branch: "maven-3.9.x"
        labels:
          - "mvn3"
          - "dependencies"
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Aug 17 19:26:41 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            try {
                // Check if we're in CI environment (GitHub Actions specifically)
                String ci = System.getenv("CI");
                String githubActions = System.getenv("GITHUB_ACTIONS");
                boolean isCI = "true".equals(ci) || "true".equals(githubActions);
    
                // First, check if docker command is available
                ProcessBuilder pb = new ProcessBuilder("docker", "--version");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top